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.
|
|
|
|
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}";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据权限配置中,当前登录所属部门的key
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string LoginDept = "{loginDept}";
|
|
|
|
|
}
|