ReportUserListService.php 353 B

1234567891011121314151617
  1. <?php
  2. namespace App\Services;
  3. use App\Models\ReportUserList;
  4. use Slowlyo\OwlAdmin\Services\AdminService;
  5. /**
  6. * 临时用户列表
  7. *
  8. * @method ReportUserList getModel()
  9. * @method ReportUserList|\Illuminate\Database\Query\Builder query()
  10. */
  11. class ReportUserListService extends AdminService
  12. {
  13. protected string $modelName = ReportUserList::class;
  14. }