From 923a3d082d0a9ed89b91ff4993afa2b5de1fa8c2 Mon Sep 17 00:00:00 2001 From: "zangch@mesnac.com" Date: Thu, 4 Dec 2025 09:39:04 +0800 Subject: [PATCH] =?UTF-8?q?feat(rfid/DashboardVO):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=91=8A=E8=AD=A6=E7=9B=B8=E5=85=B3=E5=AD=97=E6=AE=B5=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 alarmFlag 字段表示是否告警 (0-否; 1-是) - 新增 alarmAction 字段表示具体的告警行为 --- src/api/rfid/dashboard/types.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/api/rfid/dashboard/types.ts b/src/api/rfid/dashboard/types.ts index 7ea0598..f9822a1 100644 --- a/src/api/rfid/dashboard/types.ts +++ b/src/api/rfid/dashboard/types.ts @@ -147,4 +147,8 @@ export interface DeviceLatestRecordVO { latestRecordTime: string | null; /** 读取状态 (1-成功; 0-失败) */ readStatus: string | null; + /** 是否告警 (0-否; 1-是) */ + alarmFlag: string | null; + /** 告警行为 */ + alarmAction: string | null; }