//------------------------------------------------------------------------------ // // 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("BuilderTable")] public partial class BuilderTable : StringEntity { public BuilderTable() { this.TableName= string.Empty; this.Comment= string.Empty; this.DetailTableName= string.Empty; this.DetailComment= string.Empty; this.ClassName= string.Empty; this.Namespace= string.Empty; this.ModuleCode= string.Empty; this.ModuleName= string.Empty; this.Folder= string.Empty; this.Options= string.Empty; this.TypeId= string.Empty; this.TypeName= string.Empty; 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("表英文全称")] public string TableName { get; set; } /// /// 表描述、中文名称 /// [Description("表描述、中文名称")] public string Comment { get; set; } /// /// 子表英文全称 /// [Description("子表英文全称")] public string DetailTableName { get; set; } /// /// 子表描述、中文名称 /// [Description("子表描述、中文名称")] public string DetailComment { get; set; } /// /// 实体类名称 /// [Description("实体类名称")] public string ClassName { get; set; } /// /// 命名空间 /// [Description("命名空间")] public string Namespace { get; set; } /// /// 模块标识 /// [Description("模块标识")] public string ModuleCode { get; set; } /// /// 模块名称 /// [Description("模块名称")] public string ModuleName { get; set; } /// /// 代码相对文件夹路径 /// [Description("代码相对文件夹路径")] public string Folder { get; set; } /// /// 其它生成选项 /// [Description("其它生成选项")] public string Options { get; set; } /// /// 分类ID /// [Description("分类ID")] [Browsable(false)] public string TypeId { get; set; } /// /// 分类名称 /// [Description("分类名称")] public string TypeName { 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 string UpdateUserName { get; set; } /// /// 创建人姓名 /// [Description("创建人姓名")] public string CreateUserName { get; set; } /// /// 是否动态加载表头信息 /// [Description("是否动态加载表头信息")] public bool IsDynamicHeader { get; set; } /// /// 字表外键 /// [Description("字表外键")] public string ForeignKey { get; set; } /// /// 主表ID,如果为空表示为主表 /// [Description("主表ID,如果为空表示为主表")] public string ParentTableId { get; set; } } }