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