初始化仓库

This commit is contained in:
2024-09-19 11:32:39 +08:00
commit 8f5315e936
921 changed files with 76455 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace console\controllers;
use common\helpers\FuncHelper;
use common\jobs\OrderOverJob;
use common\jobs\OrderPayImJob;
use common\jobs\OrderRefundJob;
use yii\console\Controller;
class TestController extends Controller
{
public function actionTest()
{
// \Yii::$app->queue->delay(0)->push(new OrderPayImJob([
// 'orderId' => 10,
// ]));
$job = new OrderPayImJob();
$job->exec(114);
}
}