wanshenmean
6 天以前 5171d3f59b89389bf75293afd210cfa6de4ccff7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Common
{
    public class RedisName
    {
        /// <summary>
        /// Socket设备列表,清除缓存时会用到,清除以SocketDevices开头的缓存
        /// </summary>
        public const string SocketDevices = "SocketDevices";
 
        /// <summary>
        /// 设备列表,清除缓存时会用到,清除以IDevice开头的缓存
        /// </summary>
        public const string IDevice = "IDevice";
 
        /// <summary>
        /// 设备交互位置列表,清除缓存时会用到,清除以DevicePositions开头的缓存
        /// </summary>
        public const string DevicePositions = "DevicePositions";
 
        /// <summary>
        /// API列表,清除缓存时会用到,清除以DevicePositions开头的缓存
        /// </summary>
        public const string API = "API";
    }
}