📄 entity_gather_operationkind.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
//该代码下载自 :http://i.aspx1.com (asp.net学习社区)
namespace DataEntity
{
/// <summary>
/// 实体类Gather_OperationKind 。(属性说明自动提取数据库字段的描述信息)
/// </summary>
public class Gather_OperationKind
{
public Gather_OperationKind()
{ }
#region Model
private int _operationid;
private string _operationkind;
/// <summary>
///
/// </summary>
public int OperationId
{
set { _operationid = value; }
get { return _operationid; }
}
/// <summary>
///
/// </summary>
public string OperationKind
{
set { _operationkind = value; }
get { return _operationkind; }
}
#endregion Model
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -