📄 order.cs
字号:
namespace Org.InteliIM.Activities.Dinner
{
public class Order
{
public Order()
{
}
private string id;
/// <summary>
/// 编号
/// </summary>
public string Id
{
get
{
if (this.id == null)
this.id = "";
return this.id;
}
set { this.id = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -