1
0

console.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. use app\command\AsyncTask;
  6. use app\command\Crmresimport;
  7. use app\command\Droptopool;
  8. use app\command\Defreshcust;
  9. use app\command\DefreshEmp;
  10. use app\command\DeleteRepeatCustomer;
  11. use app\command\WeworksingleSendMessage;
  12. use app\command\Download;
  13. use app\command\Exam;
  14. use app\command\Medal;
  15. use app\command\SetNotVisitCustomers;
  16. use app\command\ResourceAutoRecovery;
  17. use app\command\DropPoolRemind;
  18. use app\command\AddInvalidLog;
  19. use app\command\DisableRemind;
  20. use app\command\WeworksinglePullChatRecord;
  21. use app\command\UpdateDataStatistics;
  22. use app\command\WeworksingleChatFileDelete;
  23. use app\command\WeworksingleUploadOss;
  24. use app\command\Fish;
  25. use app\command\FishTimes;
  26. use app\command\FishWh;
  27. use app\command\FishClue;
  28. use app\command\FishClueTest;
  29. return [
  30. // 指令定义
  31. 'commands' => [
  32. 'droptopool' => Droptopool::class,
  33. 'defreshcust' => Defreshcust::class,
  34. 'defreshemp' => DefreshEmp::class,
  35. 'crmresimport' => Crmresimport::class,
  36. 'weworksinglesendmessage' => WeworksingleSendMessage::class,
  37. 'download' => Download::class,
  38. 'deleterepeatcustomer' => DeleteRepeatCustomer::class,
  39. 'medal' => Medal::class,
  40. 'set_not_visit_customers' => SetNotVisitCustomers::class,
  41. 'async_task' => AsyncTask::class,
  42. 'exam' => Exam::class,
  43. 'resource_auto_recovery' => ResourceAutoRecovery::class,
  44. 'droppoolremind' => DropPoolRemind::class,
  45. 'addinvalidlog' => AddInvalidLog::class,
  46. 'cutimg' => Cutimg::class,
  47. 'update_data_statistics' => UpdateDataStatistics::class,
  48. 'weworksingle_pull_chat_record'=> WeworksinglePullChatRecord::class,
  49. 'wework_upload_oss'=> WeworksingleUploadOss::class,
  50. 'weworksingle_chat_file_delete'=> WeworksingleChatFileDelete::class,
  51. 'fish' => Fish::class,
  52. 'fish_times' => FishTimes::class,
  53. 'fish_live' => FishWh::class,
  54. 'fish_clue' => FishClue::class,
  55. 'disable_remind'=> DisableRemind::class,
  56. 'fish_clue_test'=> FishClueTest::class
  57. ],
  58. ];