海南旅游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.

21 lines
425 B

4 years ago
4 years ago
4 years ago
  1. <?php
  2. namespace App\Admin\Repositories;
  3. use App\Models\MiniProgramTemplate as Model;
  4. use Dcat\Admin\Repositories\EloquentRepository;
  5. /**
  6. * 小程序模板
  7. * Class MiniProgramDraft
  8. * @package App\Admin\Repositories
  9. */
  10. class MiniProgramTemplateList extends EloquentRepository
  11. {
  12. protected $eloquentClass = Model::class;
  13. public function __construct()
  14. {
  15. parent::__construct();
  16. $this->setKeyName('template_id');
  17. }
  18. }