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