namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class Sys_Menu { [Key] public int Menu_Id { get; set; } public int ParentId { get; set; } public int? VueParentId { get; set; } public int? Site_Id { get; set; } [Required] [StringLength(50)] public string MenuName { get; set; } [StringLength(50)] public string MenuEnName { get; set; } public string Url { get; set; } public string Auth { get; set; } [StringLength(350)] public string VueUrl { get; set; } public string VueAuth { get; set; } public int? VueOrderNo { get; set; } public byte? VueEnable { get; set; } [StringLength(350)] public string VueFilePath { get; set; } [StringLength(350)] public string VueName { get; set; } [StringLength(50)] public string VueIcon { get; set; } public byte? IsOpen { get; set; } public int? TypeID { get; set; } [StringLength(200)] public string Description { get; set; } public int? LevelID { get; set; } [StringLength(50)] public string Icon { get; set; } public int? OrderNo { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } [StringLength(50)] public string Modifier { get; set; } public DateTime? ModifyDate { get; set; } public byte? Enable { get; set; } [StringLength(350)] public string HelpUrl1 { get; set; } [StringLength(350)] public string HelpUrl2 { get; set; } [StringLength(350)] public string HelpUrl3 { get; set; } public string ExpandFields { get; set; } } }