material.cs
来自「饮食管理系统」· CS 代码 · 共 51 行
CS
51 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Entity
{
public class material
{
string _matid;
string _matname;
int _matprice;
int _matnum;
string _matunit;
int _matlb;
public int MatLb
{
get{return this._matlb;}
set{this._matlb=value;}
}
public string MatID
{
get { return this._matid; }
set { this._matid = value; }
}
public string MatName
{
get { return this._matname; }
set { this._matname = value; }
}
public int MatPrice
{
get { return this._matprice; }
set { this._matprice = value; }
}
public int MaiNum
{
get { return this._matnum; }
set { this._matnum = value; }
}
public string MatUnit
{
get { return this._matunit; }
set { this._matunit = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?