⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userinfo.cs

📁 酒店管理系统,您酒店物业管理的好帮手
💻 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 + -