SettlementTraffic.php 601 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace app\common\command;
  3. use think\console\Command;
  4. use think\console\Input;
  5. use think\console\Output;
  6. class SettlementTraffic extends Command
  7. {
  8. protected function configure()
  9. {
  10. // parent::configure(); // TODO: Change the autogenerated stub
  11. $this->setName('settlement')->setDescription('后台统计用户流量使用, 并扣除相关流量');
  12. }
  13. protected function execute(Input $input, Output $output)
  14. {
  15. // parent::execute($input, $output); // TODO: Change the autogenerated stub
  16. // $output->writeln("TestCommand");
  17. }
  18. }