WaybillPriceModelService.php 241 B

12345678910111213141516
  1. <?php
  2. namespace App\Services;
  3. use App\WaybillPriceModel;
  4. use App\Traits\ServiceAppAop;
  5. Class WaybillPriceModelService
  6. {
  7. use ServiceAppAop;
  8. public function find($id){
  9. return WaybillPriceModel::query()->find($id);
  10. }
  11. }