SysSystem.cs 552 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysSystem
  7. {
  8. public SysSystem()
  9. {
  10. SysSystemSysApiScope = new HashSet<SysSystemSysApiScope>();
  11. }
  12. public string SystemId { get; set; }
  13. public string SystemName { get; set; }
  14. public string Secret { get; set; }
  15. public int RecordStatus { get; set; }
  16. public virtual ICollection<SysSystemSysApiScope> SysSystemSysApiScope { get; set; }
  17. }
  18. }