📄 optable.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -