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