OrderParamService.php 369 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: z-yang
  5. * Date: 2019/2/26
  6. * Time: 18:52
  7. */
  8. namespace App\Modules\Subscribe\Services;
  9. use App\Modules\Subscribe\Models\OrderParam;
  10. class OrderParamService
  11. {
  12. public static function create($order_id,$gxhp){
  13. try{
  14. OrderParam::create(compact('order_id','gxhp'));
  15. }catch (\Exception $e){}
  16. }
  17. }