optable.cs

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

CS
48
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace Entity
{
    public class OpTable
    {
        string _opid;
        string _opname;
        string _state;
        int _maxmoney;
        string _bm;
        string _oppwd;

        public string OpId
        {
            get { return this._opid; }
            set { this._opid = value; }
        }
        public string OpName
        {
            get { return this._opname; }
            set { this._opname=value;}
        }
        public string State
        {
            get { return this._state; }
            set { this._state = value; }
        }
        public int MaxMoney
        {
            get { return this._maxmoney; }
            set { this._maxmoney = value; }
        }
        public string Bm
        {
            get { return this._bm; }
            set { this._bm = value; }
        }
        public string OpPwd
        {
            get { return this._oppwd; }
            set { this._oppwd = value; }
        }
    }
}

⌨️ 快捷键说明

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