?? information.cs
字號:
using System;
namespace Model
{
/// <summary>
/// 實體類Information 。(屬性說明自動提取數據庫字段的描述信息)
/// </summary>
public class Information
{
public Information()
{}
#region Model
private int _infoid;
private string _infotitle;
private string _infocontent;
private string _infoauthor;
private DateTime _issuetime;
private int _infokind;
private string _infopubilcer;
private char _infoallow;
/// <summary>
///
/// </summary>
public int InfoID
{
set{ _infoid=value;}
get{return _infoid;}
}
/// <summary>
///
/// </summary>
public string InfoTitle
{
set{ _infotitle=value;}
get{return _infotitle;}
}
/// <summary>
///
/// </summary>
public string InfoContent
{
set{ _infocontent=value;}
get{return _infocontent;}
}
/// <summary>
///
/// </summary>
public string InfoAuthor
{
set{ _infoauthor=value;}
get{return _infoauthor;}
}
/// <summary>
///
/// </summary>
public DateTime IssueTime
{
set{ _issuetime=value;}
get{return _issuetime;}
}
/// <summary>
///
/// </summary>
public int InfoKind
{
set{ _infokind=value;}
get{return _infokind;}
}
public string InfoPublicer
{
set { _infopubilcer = value; }
get { return _infopubilcer; }
}
public char InfoAllow
{
set { _infoallow = value; }
get { return _infoallow; }
}
#endregion Model
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -