浏览代码

新增redis枚举

zhuhao 2 年之前
父节点
当前提交
8e1bf0b051
共有 1 个文件被更改,包括 21 次插入0 次删除
  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
+    }
+}