Explorar o código

新增redis枚举

zhuhao %!s(int64=2) %!d(string=hai) anos
pai
achega
8e1bf0b051
Modificáronse 1 ficheiros con 21 adicións e 0 borrados
  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
+    }
+}