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.
20 lines
431 B
C#
20 lines
431 B
C#
namespace ZJ_BYD.Common
|
|
{
|
|
/// <summary>
|
|
/// 当前登录用户
|
|
/// </summary>
|
|
public static class CurrentUser
|
|
{
|
|
/// <summary>
|
|
/// 用户名
|
|
/// </summary>
|
|
public static string UserName { get; set; }
|
|
public static string PassWord { get; set; }
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
public static string RealName { get; set; }
|
|
}
|
|
}
|