//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; using System.Text; using OpenAuth.Repository.Core; namespace OpenAuth.Repository.Domain { /// /// 代码生成器的字段信息 /// [Table("BuilderTableColumn")] public partial class BuilderTableColumn : StringEntity { public BuilderTableColumn() { this.TableId= string.Empty; this.TableName= string.Empty; this.ColumnName= string.Empty; this.Remark= string.Empty; this.ColumnType= string.Empty; this.EntityType= string.Empty; this.EntityName= string.Empty; this.QueryType= string.Empty; this.HtmlType= string.Empty; this.EditType= string.Empty; this.Sort= 0; this.CreateTime= DateTime.Now; this.CreateUserId= string.Empty; this.UpdateTime= DateTime.Now; this.UpdateUserId= string.Empty; this.UpdateUserName= string.Empty; this.CreateUserName= string.Empty; } /// /// 归属表编号 /// [Description("归属表编号")] [Browsable(false)] public string TableId { get; set; } /// /// 表名称 /// [Description("表名称")] public string TableName { get; set; } /// /// 列名称 /// [Description("列名称")] public string ColumnName { get; set; } /// /// 列描述 /// [Description("列描述")] public string Remark { get; set; } /// /// 列类型 /// [Description("列类型")] public string ColumnType { get; set; } /// /// 实体类型 /// [Description("实体类型")] public string EntityType { get; set; } /// /// 实体名称 /// [Description("实体名称")] public string EntityName { get; set; } /// /// 是否主键 /// [Description("是否主键")] public bool IsKey { get; set; } /// /// 是否自增 /// [Description("是否自增")] public bool IsIncrement { get; set; } /// /// 是否必填 /// [Description("是否必填")] public bool IsRequired { get; set; } /// /// 是否为插入字段 /// [Description("是否为插入字段")] public bool IsInsert { get; set; } /// /// 是否编辑字段 /// [Description("是否编辑字段")] public bool IsEdit { get; set; } /// /// 是否列表字段 /// [Description("是否列表字段")] public bool IsList { get; set; } /// /// 是否查询字段 /// [Description("是否查询字段")] public bool IsQuery { get; set; } /// /// 查询方式(等于、不等于、大于、小于、范围) /// [Description("查询方式(等于、不等于、大于、小于、范围)")] public string QueryType { get; set; } /// /// 显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件) /// [Description("显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)")] public string HtmlType { get; set; } /// /// 编辑类型(文本框、文本域、下拉框、复选框、单选框、日期控件) /// [Description("编辑类型(文本框、文本域、下拉框、复选框、单选框、日期控件)")] public string EditType { get; set; } /// /// 排序 /// [Description("排序")] public int Sort { get; set; } /// /// 创建时间 /// [Description("创建时间")] public System.DateTime CreateTime { get; set; } /// /// 创建人ID /// [Description("创建人ID")] [Browsable(false)] public string CreateUserId { get; set; } /// /// 修改时间 /// [Description("修改时间")] public System.DateTime? UpdateTime { get; set; } /// /// 修改人ID /// [Description("修改人ID")] [Browsable(false)] public string UpdateUserId { get; set; } /// /// 修改时的行位置 /// [Description("修改时的行位置")] public int? EditRow { get; set; } /// /// 修改时的列位置 /// [Description("修改时的列位置")] public int? EditCol { get; set; } /// /// 修改人姓名 /// [Description("修改人姓名")] public string UpdateUserName { get; set; } /// /// 创建人姓名 /// [Description("创建人姓名")] public string CreateUserName { get; set; } /// /// 最大长度 /// [Description("最大长度")] public int? MaxLength { get; set; } /// /// 数据源(用于下拉框、复选框等取值) /// [Description("数据源(用于下拉框、复选框等取值)")] public string DataSource { get; set; } } }