📄 acceptfile.cs
字号:
using System;
namespace DLOA.Model
{
/// <summary>
/// 实体类AcceptFile 。(属性说明自动提取数据库字段的描述信息)
/// </summary>
public class AcceptFile
{
public AcceptFile()
{}
#region Model
private int _id;
private int _fileid;
private string _filetitle;
private int _addressee;
private DateTime _acceptdate;
private string _acceptunit;
/// <summary>
///
/// </summary>
public int id
{
set{ _id=value;}
get{return _id;}
}
/// <summary>
///
/// </summary>
public int fileId
{
set{ _fileid=value;}
get{return _fileid;}
}
/// <summary>
///
/// </summary>
public string fileTitle
{
set{ _filetitle=value;}
get{return _filetitle;}
}
/// <summary>
///
/// </summary>
public int addressee
{
set{ _addressee=value;}
get{return _addressee;}
}
/// <summary>
///
/// </summary>
public DateTime acceptDate
{
set{ _acceptdate=value;}
get{return _acceptdate;}
}
/// <summary>
///
/// </summary>
public string acceptUnit
{
set{ _acceptunit=value;}
get{return _acceptunit;}
}
#endregion Model
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -