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