| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\jobs;
- use yii\base\BaseObject;
- use yii\queue\JobInterface;
- use app\modules\admin\models\wechat_mp\CardForm;
- /**
- * 店铺复制
- */
- class StoreCopyJob extends BaseObject implements JobInterface
- {
- public $id;
- public function execute($queue)
- {
- $_GET['md_id'] = 0;
- echo '----StoreCopyJob----' . $this->id;
- sleep(1);
- $res = \app\models\StoreCopy::doCopyStatus($this->id, 1);
- echo '----StoreCopyJob--end--' . $this->id;
- echo json_encode($res);
- }
- }
|