You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.3 KiB

namespace GDZZ.Core;
public class CommonConst
{
#region 缓存
/// <summary>
/// 用户缓存
/// </summary>
public const string CACHE_KEY_USER = "user_";
/// <summary>
/// 菜单缓存
/// </summary>
public const string CACHE_KEY_MENU = "menu_";
/// <summary>
/// 权限缓存
/// </summary>
public const string CACHE_KEY_PERMISSION = "permission_";
/// <summary>
/// 数据范围缓存
/// </summary>
public const string CACHE_KEY_DATASCOPE = "datascope_";
public const string CACHE_KEY_USERSDATASCOPE = "usersdatascope_";
/// <summary>
/// 验证码缓存
/// </summary>
public const string CACHE_KEY_CODE = "vercode_";
/// <summary>
/// 库表实体信息缓存
/// </summary>
public const string CACHE_KEY_ENTITYINFO = "tableentity";
/// <summary>
/// 所有权限缓存
/// </summary>
public const string CACHE_KEY_ALLPERMISSION = "allpermission";
#endregion
/// <summary>
/// 程序集
/// </summary>
public static string[] ENTITY_ASSEMBLY_NAME = new string[] { "GDZZ.Core", "GDZZ.Application", "GDZZ.FlowCenter" };
/// <summary>
/// 删除字段
/// </summary>
public const string DELETE_FIELD = "IsDeleted";
#region 数据库编号
public const string MasterDb = "0";
#endregion
}