using System; using System.Collections.Generic; #nullable disable namespace YLShipBuildLandMap.Entity { public partial class SysFunctionCode { public SysFunctionCode() { InverseParentFunctionCodeNavigation = new HashSet(); SysMenu = new HashSet(); SysRoleSysFunctionCode = new HashSet(); } public string FunctionCode { get; set; } public string FunctionName { get; set; } public string ParentFunctionCode { get; set; } public short OrderNo { get; set; } public virtual SysFunctionCode ParentFunctionCodeNavigation { get; set; } public virtual ICollection InverseParentFunctionCodeNavigation { get; set; } public virtual ICollection SysMenu { get; set; } public virtual ICollection SysRoleSysFunctionCode { get; set; } } }