1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class SysApiScope
- {
- public SysApiScope()
- {
- SysSystemSysApiScope = new HashSet<SysSystemSysApiScope>();
- }
- public string ApiScopeId { get; set; }
- public string Name { get; set; }
- public virtual ICollection<SysSystemSysApiScope> SysSystemSysApiScope { get; set; }
- }
- }
|