From d003bb14e52e0d89abb555b59985b9960ee55aef Mon Sep 17 00:00:00 2001 From: yanghongwei Date: Fri, 4 Apr 2025 19:39:21 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A1=E7=AE=97=E7=BC=93=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Service/AlarmService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Service/AlarmService.cs b/Service/AlarmService.cs index 6e4b9ab..18eaf62 100644 --- a/Service/AlarmService.cs +++ b/Service/AlarmService.cs @@ -67,6 +67,7 @@ namespace LY.App.Service await _db.CopyNew().Insertable(entity).SplitTable().ExecuteReturnSnowflakeIdListAsync(); //推送报警信息 await _pushService.SendMessageToAll(new { msgType = "event", data = entity }); + await _redisService.DeleteAsync(RedisKeyList.index_data()); } return new ApiResult(); }