1234567891011121314151617181920212223242526272829 |
- <?php
- // +---------------------------------------------------------------------+
- // | NiuCloud | [ WE CAN DO IT JUST NiuCloud ] |
- // +---------------------------------------------------------------------+
- // | Copy right 2019-2029 www.niucloud.com |
- // +---------------------------------------------------------------------+
- // | Author | NiuCloud <niucloud@outlook.com> |
- // +---------------------------------------------------------------------+
- // | Repository | https://github.com/niucloud/framework.git |
- // +---------------------------------------------------------------------+
- declare (strict_types = 1);
- namespace app\event;
- use app\model\order\OrderCommon;
- /**
- * 订单自动完成
- */
- class CronOrderComplete
- {
- // 行为扩展的执行入口必须是run
- public function handle($data)
- {
- $order = new OrderCommon();
- $res = $order->orderComplete($data["relate_id"]);//订单自动完成
- return $res;
- }
-
- }
|