SettlementTraffic.php 397 B

123456789101112131415161718
  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('SettlementTraffic')->setDescription('后台统计用户流量使用, 并扣除相关流量')
  12. }
  13. }