Ver código fonte

新增redis枚举

zhuhao 2 anos atrás
pai
commit
8e1bf0b051
1 arquivos alterados com 21 adições e 0 exclusões
  1. 21 0
      IMCS_CCS/Model/RedisKeyEnum.cs

+ 21 - 0
IMCS_CCS/Model/RedisKeyEnum.cs

@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace IMCS_CCS.Model
+{
+    public enum RedisKeyEnum
+    {
+        //在线设备
+        DeviceList,
+        //所有使用设备
+        ALLUseDeviceList,
+        //所有设备
+        ALLDeviceList,
+        //回调任务key
+        CallbackTaskList,
+        //监控设备状态key
+        MonitorEquipmentStatusJob
+    }
+}