|
@@ -0,0 +1,18 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+
|
|
|
+namespace app\common\command;
|
|
|
+
|
|
|
+
|
|
|
+use think\console\Command;
|
|
|
+use think\console\Input;
|
|
|
+use think\console\Output;
|
|
|
+
|
|
|
+class SettlementTraffic extends Command
|
|
|
+{
|
|
|
+ protected function configure()
|
|
|
+ {
|
|
|
+// parent::configure(); // TODO: Change the autogenerated stub
|
|
|
+ $this->setName('SettlementTraffic')->setDescription('后台统计用户流量使用, 并扣除相关流量')
|
|
|
+ }
|
|
|
+}
|