27 lines
640 B
C#
27 lines
640 B
C#
namespace RIZO.Infrastructure.Constant
|
|
{
|
|
/// <summary>
|
|
/// 敏感数据常量字符串
|
|
/// </summary>
|
|
public static class SensitivePerms
|
|
{
|
|
/// <summary>
|
|
/// 手机号
|
|
/// </summary>
|
|
public const string ViewRealPhone = "p:vrp";
|
|
/// <summary>
|
|
/// 身份证
|
|
/// </summary>
|
|
public const string ViewRealIdCard = "p:vri";
|
|
/// <summary>
|
|
/// 邮箱
|
|
/// </summary>
|
|
public const string ViewEmail = "p:ve";
|
|
|
|
/// <summary>
|
|
/// IP地址
|
|
/// </summary>
|
|
public const string ViewRealIP = "p:vip";
|
|
}
|
|
}
|