using NCC.Dependency; namespace NCC.Common.Const { /// /// 公共常量 /// [SuppressSniffer] public class CommonConst { /// /// 默认密码 /// 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_BILLRULE = "billrule_"; /// /// 在线用户缓存 /// public const string CACHE_KEY_ONLINE_USER = "onlineuser_"; /// /// 岗位缓存 /// public const string CACHE_KEY_POSITION = "position_"; /// /// 角色缓存 /// public const string CACHE_KEY_ROLE = "role_"; /// /// 在线开发缓存 /// public const string VISUALDEV = "visualdev_"; } }