|
@@ -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("获取联通订单消息结束");
|
|
|
+ }
|
|
|
+}
|