📄 dic_xqh.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Data;
using System.Data.OleDb;
using System.Drawing.Design;
/* * * * * * * * * * * * * * * * * * * * * * * * * *
* Created By: ToolsGuide.exe(WinApp.MSSQLServer2005DBEntity.Biz.NHibernateCreator)
* File : Dic_xqh.cs
* Version :1.0
* Date :2009-3-25 9:34:52
* * * * * * * * * * * * * * * * * * * * * * * * * */
namespace BaoKu.Helper.BussinessEntity.Model
{
/**
\brief Dic_xqh实体
*/
[ToolboxItem(true)]
public class Dic_xqh : FrameEntity
{
#region 字段
#region Fields Properties
/**
\brief 表示 Dic_xqh 实体对应数据库对象名
*/
public const string TableProperty = "Dic_xqh";
/**
\brief 表示 Dic_xqh 实体对应数据库架构名
*/
public const string SchemaProperty = "dbo";
/**
\brief 表示 Id [标识] 字段名
*/
public const string IdProperty = "id";
/**
\brief 表示 IdLabel [标签] 字段名
*/
public const string IdLabelProperty = "id_label";
/**
\brief 表示 Name [字典种类名] 字段名
*/
public const string NameProperty = "name";
/**
\brief 表示 Description [字典种类描述] 字段名
*/
public const string DescriptionProperty = "description";
/**
\brief 表示 Flag [记录有效标志] 字段名
*/
public const string FlagProperty = "flag";
#endregion
/**
\brief 表示字段 Id [标识]
*/
protected int _Id;
/**
\brief 表示字段 IdLabel [标签]
*/
protected string _IdLabel;
/**
\brief 表示字段 Name [字典种类名]
*/
protected string _Name;
/**
\brief 表示字段 Description [字典种类描述]
*/
protected string _Description;
/**
\brief 表示字段 Flag [记录有效标志]
*/
protected bool _Flag;
#endregion
#region 属性
/**
\brief 获取或设置字段 Id [标识]
*/
[Browsable(true)]
[Description("标识")]
[Category("字段属性")]
public int Id
{
set
{
_Id = value;
}
get
{
return _Id;
}
}
/**
\brief 获取或设置字段 IdLabel [标签]
*/
[Browsable(true)]
[Description("标签")]
[Category("字段属性")]
public string IdLabel
{
set
{
_IdLabel = value;
}
get
{
return _IdLabel;
}
}
/**
\brief 获取或设置字段 Name [字典种类名]
*/
[Browsable(true)]
[Description("字典种类名")]
[Category("字段属性")]
public string Name
{
set
{
_Name = value;
}
get
{
return _Name;
}
}
/**
\brief 获取或设置字段 Description [字典种类描述]
*/
[Browsable(true)]
[Description("字典种类描述")]
[Category("字段属性")]
public string Description
{
set
{
_Description = value;
}
get
{
return _Description;
}
}
////<summery>
//brief 获取或设置字段 Flag [记录有效标志]
////</summery>
[Browsable(true)]
[Description("记录有效标志")]
[Category("字段属性")]
public bool Flag
{
set
{
_Flag = value;
}
get
{
return _Flag;
}
}
#endregion
#region 构造函数
/**
\brief 构造函数
*/
public Dic_xqh()
{
TableName = Dic_xqh.TableProperty;
EntityName = GetType().Name;
SchemaName = Dic_xqh.SchemaProperty;
ObjCategory = TableCategory.Table;
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -