RedisKeyEnum.cs 512 B

12345678910111213141516171819202122232425
  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. //PLC报警
  22. PlcAlarm
  23. }
  24. }