SysApiScope.cs 463 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysApiScope
  7. {
  8. public SysApiScope()
  9. {
  10. SysSystemSysApiScope = new HashSet<SysSystemSysApiScope>();
  11. }
  12. public string ApiScopeId { get; set; }
  13. public string Name { get; set; }
  14. public virtual ICollection<SysSystemSysApiScope> SysSystemSysApiScope { get; set; }
  15. }
  16. }