?? duty.cs
字號(hào):
namespace Org.InteliIM.Office
{
/// <summary>
/// 職務(wù)
/// </summary>
public class Duty
{
private string name;
/// <summary>
/// 名稱(chēng)
/// </summary>
public string Name
{
get
{
if (this.name == null)
this.name = "";
return this.name;
}
set { this.name = value; }
}
private string description;
/// <summary>
/// 描述
/// </summary>
public string Description
{
get
{
if (this.description == null)
this.description = "";
return this.description;
}
set { this.description = value; }
}
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -