2025-12-17 11:12:13 +08:00
|
|
|
|
namespace YD_Event.Core.Const;
|
2025-12-17 10:32:52 +08:00
|
|
|
|
|
|
|
|
|
|
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.";
|
|
|
|
|
|
}
|