📄 commoditygoes.cs
字号:
using System;
namespace DLOA.Model
{
/// <summary>
/// 实体类CommodityGoes 。(属性说明自动提取数据库字段的描述信息)
/// </summary>
public class CommodityGoes
{
public CommodityGoes()
{}
#region Model
private int _id;
private string _goesname;
private string _goesmodel;
private int _goesquantity;
private string _goesparameter;
private decimal _goesunit;
private int _departmentid;
private string _signature;
private DateTime _datex;
private string _goesopinion;
/// <summary>
///
/// </summary>
public int id
{
set{ _id=value;}
get{return _id;}
}
/// <summary>
///
/// </summary>
public string goesname
{
set{ _goesname=value;}
get{return _goesname;}
}
/// <summary>
///
/// </summary>
public string goesModel
{
set{ _goesmodel=value;}
get{return _goesmodel;}
}
/// <summary>
///
/// </summary>
public int goesQuantity
{
set{ _goesquantity=value;}
get{return _goesquantity;}
}
/// <summary>
///
/// </summary>
public string goesParameter
{
set{ _goesparameter=value;}
get{return _goesparameter;}
}
/// <summary>
///
/// </summary>
public decimal goesUnit
{
set{ _goesunit=value;}
get{return _goesunit;}
}
/// <summary>
///
/// </summary>
public int departmentid
{
set{ _departmentid=value;}
get{return _departmentid;}
}
/// <summary>
///
/// </summary>
public string signature
{
set{ _signature=value;}
get{return _signature;}
}
/// <summary>
///
/// </summary>
public DateTime datex
{
set{ _datex=value;}
get{return _datex;}
}
/// <summary>
///
/// </summary>
public string goesOpinion
{
set{ _goesopinion=value;}
get{return _goesopinion;}
}
#endregion Model
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -