?? 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 + -