<?php namespace App\Console\Commands; use App\Admin\Service\AutoAssignCustomerService; use Illuminate\Console\Command; class updateDepartmentNum extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'command:updateDepartmentNum'; /** * The console command description. * * @var string */ protected $description = 'Command description'; /** * Create a new command instance. * * @return void */ public function __construct() { parent::__construct(); } /** * Execute the console command. * * @return int */ public function handle() { echo date("Y-m-d H:i:s") . "更新部门数量开始" . PHP_EOL; AutoAssignCustomerService::updateDepartmentNum(); echo date("Y-m-d H:i:s") . "更新部门数量结束" . PHP_EOL; return 0; } }