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
{
/// 数据权限配置中,当前登录用户的key
public const string LoginUser = "{loginUser}";
/// 数据权限配置中,当前登录角色的key
public const string LoginRole = "{loginRole}";
/// 数据权限配置中,当前登录机构的key
public const string LoginOrg = "{loginOrg}";
}