<?phpnamespaceApp\Console\Commands;useApp\Http\Services\DataService;useIlluminate\Console\Command;useIlluminate\Foundation\Inspiring;//设置供应商是否需要跟进classRemoveEmptyContactextendsCommand{/** * The name and signature of the console command. * * @var string */protected$signature='remove_empty_contact';/** * The console command description. * * @var string */protected$description='Display an inspiring quote';/** * Execute the console command. * * @return mixed */publicfunctionhandle(){$service=newDataService();$service->removeEmptyContactChannelUser();}}