📄 download.cs
字号:
using System;
namespace Model
{
/// <summary>
/// 实体类DownLoad 。(属性说明自动提取数据库字段的描述信息)
/// </summary>
public class DownLoad
{
public DownLoad()
{}
#region Model
private int _fileid;
private string _filetitle;
private string _filepath;
private DateTime _uploadtime;
/// <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 string FilePath
{
set{ _filepath=value;}
get{return _filepath;}
}
/// <summary>
///
/// </summary>
public DateTime UpLoadTime
{
set{ _uploadtime=value;}
get{return _uploadtime;}
}
#endregion Model
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -