ThirdPartyServiceRepository.php 427 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Module\ThirdParty\Repositorys;
  3. use App\Module\ThirdParty\Models\ThirdPartyService;
  4. use Dcat\Admin\Repositories\EloquentRepository;
  5. /**
  6. * 第三方服务数据仓库
  7. *
  8. * 专门用于后台管理的数据访问层
  9. */
  10. class ThirdPartyServiceRepository extends EloquentRepository
  11. {
  12. /**
  13. * 模型类名
  14. *
  15. * @var string
  16. */
  17. protected $eloquentClass = ThirdPartyService::class;
  18. }