OwnerStoragePriceModelService.php 308 B

1234567891011121314
  1. <?php
  2. namespace App\Services;
  3. use App\OwnerStoragePriceModel;
  4. Class OwnerStoragePriceModelService
  5. {
  6. public function getSelection(array $columns = ["counting_type","using_type"], array $withs = [])
  7. {
  8. return OwnerStoragePriceModel::query()->select($columns)->with($withs)->get();
  9. }
  10. }