namespace iWare.Wms.Core
{
public class CommonConst
{
///
/// 字典缓存
///
public const string Dict_KEY = "dict_";
///
/// 默认密码
///
public const string DEFAULT_PASSWORD = "123456";
///
/// 用户缓存
///
public const string CACHE_KEY_USER = "user_";
///
/// 菜单缓存
///
public const string CACHE_KEY_MENU = "menu_";
///
/// 权限缓存
///
public const string CACHE_KEY_PERMISSION = "permission_";
///
/// 数据范围缓存
///
public const string CACHE_KEY_DATASCOPE = "datascope_";
///
/// 验证码缓存
///
public const string CACHE_KEY_CODE = "vercode_";
///
/// 所有缓存关键字集合
///
public const string CACHE_KEY_ALL = "allkey";
///
/// 定时任务缓存
///
public const string CACHE_KEY_TIMER_JOB = "timerjob";
///
/// 在线用户缓存
///
public const string CACHE_KEY_ONLINE_USER = "onlineuser";
///
/// 系统管理员角色编码
///
public const string SYS_MANAGER_ROLE_CODE = "sys_manager_role";
}
}