1234567891011121314151617181920 |
- <?php
- /**
- * Created by PhpStorm.
- * User: z-yang
- * Date: 2019/2/26
- * Time: 18:52
- */
- namespace App\Modules\Subscribe\Services;
- use App\Modules\Subscribe\Models\OrderParam;
- class OrderParamService
- {
- public static function create($order_id,$gxhp){
- try{
- OrderParam::create(compact('order_id','gxhp'));
- }catch (\Exception $e){}
- }
- }
|