lixiaojun
2024-08-20 1570ed0b49451d0a3465e63ae3f34e9f13a99ca9
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
namespace Yw.DMA
{
    /// <summary>
    /// 内存缓存键-为以后增加清除缓存做准备
    /// </summary>
    public class MemoryCacheKey
    {
        /// <summary>
        /// 服务层级
        /// </summary>
        public const string ServiceLevel = "Service";
 
        /// <summary>
        /// 接口层级
        /// </summary>
        public const string WebApiLevel = "WebApi";
 
        /// <summary>
        /// 模块
        /// </summary>
        public const string Module = "DMA";
 
 
 
    }
}