namespace ZJ_BYD.Common
{
///
/// 当前登录用户
///
public static class CurrentUser
{
///
/// 用户名
///
public static string UserName { get; set; }
public static string PassWord { get; set; }
///
/// 姓名
///
public static string RealName { get; set; }
///
/// 机型
///
public static string MachineType { get;set; }
}
}