/* *Author:jxx *Contact:283591387@qq.com *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ 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 WIDESEA_Entity; using WIDESEA_Entity.SystemModels; namespace WIDESEA_Entity.DomainModels { [EntityAttribute(TableCnName = "字典视图")] public class vSys_Dictionary:BaseEntity { /// /// /// [Key] [Display(Name ="Dic_ID")] [Column(TypeName="int")] [Required(AllowEmptyStrings=false)] public int Dic_ID { get; set; } /// /// /// [Display(Name ="DicValue")] [MaxLength(100)] [Column(TypeName="nvarchar(100)")] public string DicValue { get; set; } /// /// /// [Display(Name ="DicList_ID")] [Column(TypeName="int")] public int DicList_ID { get; set; } /// /// /// [Display(Name ="DicName")] [MaxLength(100)] [Column(TypeName="nvarchar(100)")] public string DicName { get; set; } /// /// /// [Display(Name ="Enable")] [Column(TypeName="tinyint")] public byte? Enable { get; set; } /// /// /// [Display(Name ="DicNo")] [MaxLength(100)] [Column(TypeName="nvarchar(100)")] [Required(AllowEmptyStrings=false)] public string DicNo { get; set; } } }