SysMenu.cs 989 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysMenu
  7. {
  8. public SysMenu()
  9. {
  10. InverseParentMenuNoNavigation = new HashSet<SysMenu>();
  11. }
  12. public string MenuNo { get; set; }
  13. public short OrderNo { get; set; }
  14. public string MenuName { get; set; }
  15. public string Icon { get; set; }
  16. public string Url { get; set; }
  17. public string ParentMenuNo { get; set; }
  18. public bool IsTopMenu { get; set; }
  19. public bool IsVisible { get; set; }
  20. public bool? IsLeaf { get; set; }
  21. public string FunctionCode { get; set; }
  22. public int RecordStatus { get; set; }
  23. public virtual SysFunctionCode FunctionCodeNavigation { get; set; }
  24. public virtual SysMenu ParentMenuNoNavigation { get; set; }
  25. public virtual ICollection<SysMenu> InverseParentMenuNoNavigation { get; set; }
  26. }
  27. }