SysFunctionCode.cs 965 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysFunctionCode
  7. {
  8. public SysFunctionCode()
  9. {
  10. InverseParentFunctionCodeNavigation = new HashSet<SysFunctionCode>();
  11. SysMenu = new HashSet<SysMenu>();
  12. SysRoleSysFunctionCode = new HashSet<SysRoleSysFunctionCode>();
  13. }
  14. public string FunctionCode { get; set; }
  15. public string FunctionName { get; set; }
  16. public string ParentFunctionCode { get; set; }
  17. public short OrderNo { get; set; }
  18. public virtual SysFunctionCode ParentFunctionCodeNavigation { get; set; }
  19. public virtual ICollection<SysFunctionCode> InverseParentFunctionCodeNavigation { get; set; }
  20. public virtual ICollection<SysMenu> SysMenu { get; set; }
  21. public virtual ICollection<SysRoleSysFunctionCode> SysRoleSysFunctionCode { get; set; }
  22. }
  23. }