| 123456789101112131415161718192021222324 |
- <?php
- namespace app\jobs;
- use app\modules\client\models\v1\AlipayThirdOrderForm;
- use yii\base\BaseObject;
- use yii\queue\JobInterface;
- /**
- * 订单回传
- */
- class AlipayThirdOrderJob extends BaseObject implements JobInterface
- {
- public $order_id;
- public function execute($queue)
- {
- $form = new AlipayThirdOrderForm();
- $form->updateOrderInfo($this->order_id);
- }
- }
|