duheng
2024-06-25 43e88ef24c6b3a7988c495d1740e68e33ce52f84
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
namespace HStation.Xhs
{
    /// <summary>
    /// 内存缓存键-为以后增加清除缓存做准备
    /// </summary>
    public class MemoryCacheKey
    {
        /// <summary>
        /// 服务层级
        /// </summary>
        public const string ServiceLevel = "Service";
 
        /// <summary>
        /// 接口层级
        /// </summary>
        public const string WebApiLevel = "WebApi";
 
        /// <summary>
        /// BLL层级
        /// </summary>
        public const string BllLevel = "BLL";
 
        /// <summary>
        /// 模块
        /// </summary>
        public const string Module = "Xhs";
 
 
 
    }
}