namespace ZR.Infrastructure.Constant
{
///
/// 敏感数据常量字符串
///
public static class SensitivePerms
{
///
/// 手机号
///
public const string ViewRealPhone = "p:vrp";
///
/// 身份证
///
public const string ViewRealIdCard = "p:vri";
///
/// 邮箱
///
public const string ViewEmail = "p:ve";
///
/// IP地址
///
public const string ViewRealIP = "p:vip";
}
}