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