12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class SysMenu
- {
- public SysMenu()
- {
- InverseParentMenuNoNavigation = new HashSet<SysMenu>();
- }
- 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<SysMenu> InverseParentMenuNoNavigation { get; set; }
- }
- }
|