namespace Admin.NET.Core;
///
/// 缓存相关常量
///
public class CacheConst
{
///
/// 用户缓存
///
public const string KeyUser = "user_";
///
/// 菜单缓存
///
public const string KeyMenu = "menu_";
///
/// 权限缓存
///
public const string KeyPermission = "permission_";
///
/// 机构Id集合缓存
///
public const string KeyOrgIdList = "org_";
///
/// 验证码缓存
///
public const string KeyVerCode = "verCode_";
///
/// 所有缓存关键字集合
///
public const string KeyAll = "keys";
///
/// 定时任务缓存
///
public const string KeyTimer = "timer";
///
/// 在线用户缓存
///
public const string KeyOnlineUser = "onlineuser";
///
/// 常量下拉框
///
public const string KeyConstSelector = "selector:";
}