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

📄 waiter.cs

📁 饮食管理系统
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace Entity
{
    public class Waiter
    {
        int _id;
        string _name;
        string _jp;
        string _sex;
        int _dj;
        string _lxfs;
        string _sfh;
        string _fxrq;
        string _reamrk;

        public string Reamrk
        {
            get { return this._reamrk; }
            set { this._reamrk = value; }
        }
        public string JP
        {
            get { return this._jp; }
            set { this._jp = value; }
        }
        public string Sex
        {
            get { return this._sex; }
            set { this._sex = value; }
        }
        public int Dj
        {
            get { return this._dj; }
            set { this._dj = value; }
        }
        public string Lxfs
        {
            get { return this._lxfs; }
            set { this._lxfs = value; }
        }
        public string Sfh
        {
            get { return this._sfh; }
            set { this._sfh = value; }
        }
        public string Fxrq
        {
            get { return this._fxrq; }
            set { this._fxrq = value; }
        }

        public int ID
        {
            get { return this._id; }
            set { this._id = value; }
        }
        public string Name
        {
            get { return this._name; }
            set { this._name = value; }
        }

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -