RedisKeyEnum.cs 488 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace IMCS_CCS.Model
  6. {
  7. public enum RedisKeyEnum
  8. {
  9. //在线设备
  10. DeviceList,
  11. //所有使用设备
  12. ALLUseDeviceList,
  13. //所有设备
  14. ALLDeviceList,
  15. //回调任务key
  16. CallbackTaskList,
  17. //监控设备状态key
  18. MonitorEquipmentStatusJob,
  19. //字典key
  20. DictKeyList,
  21. Flag
  22. }
  23. }