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.
ProductionSystem/ProductionSystem_Model/ViewModel/CurrentUser.cs

24 lines
515 B
C#

namespace ProductionSystem_Model.ViewModel
{
/// <summary>
/// 当前登录用户
/// </summary>
public static class CurrentUser
{
/// <summary>
/// 用户Id
/// </summary>
public static string UserId { get; set; }
/// <summary>
/// 用户名
/// </summary>
public static string UserName { get; set; }
/// <summary>
/// 姓名
/// </summary>
public static string RealName { get; set; }
}
}