tangxu
2024-01-09 ddc2780231ea76be74fadb7486401a3d0d17b101
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.Health
{
    /// <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 = "Health";
 
 
 
    }
}