waiter.cs

来自「饮食管理系统」· CS 代码 · 共 68 行

CS
68
字号
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 + =
减小字号Ctrl + -
显示快捷键?