1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace WCS.Model
- {
- public enum RedisKeyEnum
- {
- //在线设备
- DeviceList,
- //所有使用设备
- ALLUseDeviceList,
- //所有设备
- ALLDeviceList,
- //回调任务key
- CallbackTaskList,
- //监控设备状态key
- MonitorEquipmentStatusJob,
- //字典key
- DictKeyList
- }
- }
|