namespace CompressorXN_Model.ViewModel
{
///
/// 当前登录用户
///
public static class CurrentUser
{
///
/// 主键
///
public static string Id { get; set; }
///
/// 用户名
///
public static string UserName { get; set; }
///
/// 姓名
///
public static string RealName { get; set; }
///
/// 角色
///
public static string RoleCode { get; set; }
///
/// 角色名称
///
public static string RoleName { get; set; }
///
/// 是否拥有所有权限
///
public static bool IsAllAuthor { get; set; }
}
}