| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Module\OpenAPI\Repositorys;
- use App\Module\OpenAPI\Models\OpenApiApp;
- use UCore\DcatAdmin\AdminRepository;
- /**
- * OpenAPI应用数据仓库
- *
- * 用于后台管理的数据访问层
- */
- class OpenApiAppRepository extends AdminRepository
- {
- /**
- * 获取模型类名
- *
- * @return string
- */
- public function getModel(): string
- {
- return OpenApiApp::class;
- }
- }
|