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

22 lines
550 B
C#

12 months ago
namespace DS.Module.Core;
/// <summary>
///
/// </summary>
public class ComonConst
{
/// <summary>
/// 数据权限配置中当前登录用户角色的key
/// </summary>
public static string DataRule_LoginRole = "{loginRole}";
/// <summary>
/// ApiUserFilter授权方式使用的Header头
/// </summary>
public const string API_USER_HEADER_KEY = "USER_KEY";
/// <summary>
/// ApiUserFilter授权方式使用的Header头
/// </summary>
public const string API_USER_HEADER_SECRET = "USER_SECRET";
12 months ago
}