using System; using System.Collections.Generic; #nullable disable namespace YLShipBuildLandMap.Entity { public partial class SysMenu { public SysMenu() { InverseParentMenuNoNavigation = new HashSet(); } public string MenuNo { get; set; } public short OrderNo { get; set; } public string MenuName { get; set; } public string Icon { get; set; } public string Url { get; set; } public string ParentMenuNo { get; set; } public bool IsTopMenu { get; set; } public bool IsVisible { get; set; } public bool? IsLeaf { get; set; } public string FunctionCode { get; set; } public int RecordStatus { get; set; } public virtual SysFunctionCode FunctionCodeNavigation { get; set; } public virtual SysMenu ParentMenuNoNavigation { get; set; } public virtual ICollection InverseParentMenuNoNavigation { get; set; } } }