/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此Model */ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using iMES.Entity.SystemModels; namespace iMES.Entity.DomainModels { [Entity(TableCnName = "打印模版分类",TableName = "Base_PrintCatalog")] public partial class Base_PrintCatalog:SysEntity { /// ///打印模板分类主键ID /// [Key] [Display(Name ="打印模板分类主键ID")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] public Guid CatalogId { get; set; } /// ///分类名称 /// [Display(Name ="分类名称")] [MaxLength(100)] [Column(TypeName="nvarchar(100)")] [Editable(true)] [Required(AllowEmptyStrings=false)] public string CatalogName { get; set; } /// ///层级 /// [Display(Name ="层级")] [Column(TypeName="int")] [Required(AllowEmptyStrings=false)] public int LevelPath { get; set; } /// ///分类编码 /// [Display(Name ="分类编码")] [MaxLength(100)] [Column(TypeName="varchar(100)")] [Editable(true)] [Required(AllowEmptyStrings=false)] public string CatalogCode { get; set; } /// ///上级分类 /// [Display(Name ="上级分类")] [Column(TypeName="uniqueidentifier")] [Editable(true)] public Guid? ParentId { get; set; } /// ///创建人编号 /// [Display(Name ="创建人编号")] [Column(TypeName="int")] public int? CreateID { get; set; } /// ///创建人 /// [Display(Name ="创建人")] [MaxLength(30)] [Column(TypeName="nvarchar(30)")] public string Creator { get; set; } /// ///创建时间 /// [Display(Name ="创建时间")] [Column(TypeName="datetime")] public DateTime? CreateDate { get; set; } /// ///修改人编号 /// [Display(Name ="修改人编号")] [Column(TypeName="int")] public int? ModifyID { get; set; } /// ///修改人 /// [Display(Name ="修改人")] [MaxLength(30)] [Column(TypeName="nvarchar(30)")] public string Modifier { get; set; } /// ///修改时间 /// [Display(Name ="修改时间")] [Column(TypeName="datetime")] public DateTime? ModifyDate { get; set; } } }