OpenApiAppRepository.php 422 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Module\OpenAPI\Repositorys;
  3. use App\Module\OpenAPI\Models\OpenApiApp;
  4. use UCore\DcatAdmin\AdminRepository;
  5. /**
  6. * OpenAPI应用数据仓库
  7. *
  8. * 用于后台管理的数据访问层
  9. */
  10. class OpenApiAppRepository extends AdminRepository
  11. {
  12. /**
  13. * 获取模型类名
  14. *
  15. * @return string
  16. */
  17. public function getModel(): string
  18. {
  19. return OpenApiApp::class;
  20. }
  21. }