ShopAuthRecordService.php 353 B

1234567891011121314151617
  1. <?php
  2. namespace App\Services;
  3. use App\Models\ShopAuthRecord;
  4. use Slowlyo\OwlAdmin\Services\AdminService;
  5. /**
  6. * 店铺认证记录
  7. *
  8. * @method ShopAuthRecord getModel()
  9. * @method ShopAuthRecord|\Illuminate\Database\Query\Builder query()
  10. */
  11. class ShopAuthRecordService extends AdminService
  12. {
  13. protected string $modelName = ShopAuthRecord::class;
  14. }