📄 userinfo.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Hotel.Entity
{
public class UserInfo
{
private string _userID;
public string UserID
{
get { return _userID; }
set { _userID = value; }
}
private string _employeeID;
public string EmployeeID
{
get { return _employeeID; }
set { _employeeID = value; }
}
private string _password;
public string Password
{
get { return _password; }
set { _password = value; }
}
private string _state;
public string State
{
get { return _state; }
set { _state = value; }
}
private byte _frontManage;
public byte FrontManage
{
get { return _frontManage; }
set { _frontManage = value; }
}
private byte _financingManage;
public byte FinancingManage
{
get { return _financingManage; }
set { _financingManage = value; }
}
private byte _systemManage;
public byte SystemManage
{
get { return _systemManage; }
set { _systemManage = value; }
}
private byte _priceManage;
public byte PriceManage
{
get { return _priceManage; }
set { _priceManage = value; }
}
private byte _infoManage;
public byte InfoManage
{
get { return _infoManage; }
set { _infoManage = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -