download.cs
来自「烟草公司应用网站」· CS 代码 · 共 53 行
CS
53 行
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 + =
减小字号Ctrl + -
显示快捷键?