海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
286 B

  1. <?php
  2. namespace App\Admin\Repositories;
  3. use App\Models\IndustryProduct as Model;
  4. use Dcat\Admin\Repositories\EloquentRepository;
  5. class IndustryProduct extends EloquentRepository
  6. {
  7. /**
  8. * Model.
  9. *
  10. * @var string
  11. */
  12. protected $eloquentClass = Model::class;
  13. }