123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- // +----------------------------------------------------------------------
- // | 控制台配置
- // +----------------------------------------------------------------------
- use app\command\AsyncTask;
- use app\command\Crmresimport;
- use app\command\Droptopool;
- use app\command\Defreshcust;
- use app\command\DefreshEmp;
- use app\command\DeleteRepeatCustomer;
- use app\command\WeworksingleSendMessage;
- use app\command\Download;
- use app\command\Exam;
- use app\command\Medal;
- use app\command\SetNotVisitCustomers;
- use app\command\ResourceAutoRecovery;
- use app\command\DropPoolRemind;
- use app\command\AddInvalidLog;
- use app\command\DisableRemind;
- use app\command\WeworksinglePullChatRecord;
- use app\command\UpdateDataStatistics;
- use app\command\WeworksingleChatFileDelete;
- use app\command\WeworksingleUploadOss;
- use app\command\Fish;
- use app\command\FishTimes;
- use app\command\FishWh;
- use app\command\FishClue;
- use app\command\FishClueTest;
- return [
- // 指令定义
- 'commands' => [
- 'droptopool' => Droptopool::class,
- 'defreshcust' => Defreshcust::class,
- 'defreshemp' => DefreshEmp::class,
- 'crmresimport' => Crmresimport::class,
- 'weworksinglesendmessage' => WeworksingleSendMessage::class,
- 'download' => Download::class,
- 'deleterepeatcustomer' => DeleteRepeatCustomer::class,
- 'medal' => Medal::class,
- 'set_not_visit_customers' => SetNotVisitCustomers::class,
- 'async_task' => AsyncTask::class,
- 'exam' => Exam::class,
- 'resource_auto_recovery' => ResourceAutoRecovery::class,
- 'droppoolremind' => DropPoolRemind::class,
- 'addinvalidlog' => AddInvalidLog::class,
- 'cutimg' => Cutimg::class,
- 'update_data_statistics' => UpdateDataStatistics::class,
- 'weworksingle_pull_chat_record'=> WeworksinglePullChatRecord::class,
- 'wework_upload_oss'=> WeworksingleUploadOss::class,
- 'weworksingle_chat_file_delete'=> WeworksingleChatFileDelete::class,
- 'fish' => Fish::class,
- 'fish_times' => FishTimes::class,
- 'fish_live' => FishWh::class,
- 'fish_clue' => FishClue::class,
- 'disable_remind'=> DisableRemind::class,
- 'fish_clue_test'=> FishClueTest::class
- ],
- ];
|