WaybillPriceModelService.php 293 B

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