namespace 软胶囊弹性硬度测试仪 { public class LoginData { static string _userName = ""; public string UserName { get { return _userName; } set { _userName = value; } } //登陆权限 static int _userPower = 0;//0为普通用户,1为管理员 public int UserPower { get { return _userPower; } set { _userPower = value; } } } }