using System; using System.Collections.Generic; #nullable disable namespace YLShipBuildLandMap.Entity { public partial class SysSystem { public SysSystem() { SysSystemSysApiScope = new HashSet(); } public string SystemId { get; set; } public string SystemName { get; set; } public string Secret { get; set; } public int RecordStatus { get; set; } public virtual ICollection SysSystemSysApiScope { get; set; } } }