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
579 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System.ComponentModel;
namespace DS.Module.Core;
/// <summary>
/// 数据权限常量
/// </summary>
public static class DataRuleConst
{
/// <summary>
/// 数据权限配置中当前登录用户的key
/// </summary>
public const string LoginUser = "{loginUser}";
/// <summary>
/// 数据权限配置中当前登录角色的key
/// </summary>
public const string LoginRole = "{loginRole}";
/// <summary>
/// 数据权限配置中当前登录机构的key
/// </summary>
public const string LoginOrg = "{loginOrg}";
}