yangyin
2024-08-20 98e49c0dd42840a094837f7acae532bc237a719a
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 HStation.Assets
{
    /// <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";
    }
}