Explorar o código

获取订单信息命令

zealerChina hai 1 ano
pai
achega
e4f9c25432
Modificáronse 2 ficheiros con 26 adicións e 0 borrados
  1. 1 0
      application/command.php
  2. 25 0
      application/common/command/ZopOrderMsgCommand.php

+ 1 - 0
application/command.php

@@ -35,4 +35,5 @@ return [
     \app\common\command\Nogdyd::class,
     \app\common\command\Nohnlt::class,
     \app\common\command\Nonx::class,
+    \app\common\command\ZopOrderMsgCommand::class,
 ];

+ 25 - 0
application/common/command/ZopOrderMsgCommand.php

@@ -0,0 +1,25 @@
+<?php
+namespace app\common\command;
+
+use app\common\service\ZopOrderService;
+use app\service\EsMobileService;
+use think\console\Command;
+use think\console\Input;
+use think\console\Output;
+
+class ZopOrderMsgCommand extends Command
+{
+    protected function configure()
+    {
+        $this->setName('order:msg')->setDescription('获取zop联通订单消息');
+    }
+
+    protected function execute(Input $input, Output $output)
+    {
+        $this->output->info("开始获取联通订单消息");
+
+        ZopOrderService::orderMsg();
+
+        $this->output->info("获取联通订单消息结束");
+    }
+}