lixiaojun
2024-10-31 abf1e3b3334ab47c38aa92405a11a6ec92b7847a
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
namespace Yw.Division
{
    /// <summary>
    /// 内存缓存键-为以后增加清除缓存做准备
    /// </summary>
    internal 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";
    }
}