2025-12-17 11:12:13 +08:00

24 lines
681 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace YD_Event.Core.Const;
public class CacheConst
{
/// <summary>
/// 权限缓存键
/// </summary>
public const string PermissionKey = "permission.";
/// <summary>
/// 用户菜单信息权限缓存键构建ui左侧菜单
/// </summary>
public const string PermissionMenuKey = "permission.user.menu.";
/// <summary>
/// 用户可访问的按钮权限编码缓存键(权限编码集合)
/// </summary>
public const string PermissionButtonCodeKey = "permission.user.buttoncode.";
/// <summary>
/// 自定义配置缓存键
/// </summary>
public const string ConfigCacheKey = "custome.config.";
}