From 2b0a405a538e45fdf9fdfe8e29227c66a22a4594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E5=87=A4=E5=90=89?= Date: Fri, 1 Aug 2025 19:43:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E7=AD=89=E7=BA=A7=E6=9E=9A=E4=B8=BE=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/iflytop/handacid/app/websocket/server/AlertLevel.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/iflytop/handacid/app/websocket/server/AlertLevel.java b/src/main/java/com/iflytop/handacid/app/websocket/server/AlertLevel.java index c53ff5c..274d386 100644 --- a/src/main/java/com/iflytop/handacid/app/websocket/server/AlertLevel.java +++ b/src/main/java/com/iflytop/handacid/app/websocket/server/AlertLevel.java @@ -1,8 +1,7 @@ package com.iflytop.handacid.app.websocket.server; public enum AlertLevel { - INFO, // 普通消息 - WARNING, // 警告 - ERROR, // 错误 - ALARM, // 报警 + info, // 普通消息 + warning, // 警告 + error, // 错误 }