materialtransmission.cs
来自「小型ERP系统源码,修改版本」· CS 代码 · 共 87 行
CS
87 行
using System;
namespace DLOA.Model
{
/// <summary>
/// 实体类MaterialTransmission 。(属性说明自动提取数据库字段的描述信息)
/// </summary>
public class MaterialTransmission
{
public MaterialTransmission()
{}
#region Model
private int _id;
private string _title;
private int _addressee;
private string _appendix;
private int _urgentdegree;
private string _note;
private string _condition;
private int _sendPersonnel;
public int sendPersonnel
{
set { _sendPersonnel = value; }
get { return _sendPersonnel; }
}
/// <summary>
///
/// </summary>
public int id
{
set{ _id=value;}
get{return _id;}
}
/// <summary>
///
/// </summary>
public string title
{
set{ _title=value;}
get{return _title;}
}
/// <summary>
///
/// </summary>
public int addressee
{
set{ _addressee=value;}
get{return _addressee;}
}
/// <summary>
///
/// </summary>
public string appendix
{
set{ _appendix=value;}
get{return _appendix;}
}
/// <summary>
///
/// </summary>
public int urgentDegree
{
set{ _urgentdegree=value;}
get{return _urgentdegree;}
}
/// <summary>
///
/// </summary>
public string note
{
set{ _note=value;}
get{return _note;}
}
/// <summary>
///
/// </summary>
public string condition
{
set{ _condition=value;}
get{return _condition;}
}
#endregion Model
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?