作者 lyh

gx

<?php
/**
* @remark :
* @name :UpdateRoute.php
* @author :lyh
* @method :post
* @time :2023/11/20 15:07
*/
namespace App\Console\Commands;
use Illuminate\Console\Command;
/**
* @remark :更新所有项目的路由
* @name :UpdateRoute
* @author :lyh
* @method :post
* @time :2023/11/20 15:08
*/
class UpdateRoute extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'update_route';
/**
* The console command description.
*
* @var string
*/
protected $description = '一键生成tdk';
}
... ...
... ... @@ -836,7 +836,7 @@ class ProjectController extends BaseController
$user_list = $channelUserModel->list(['channel_id'=>$v1['id']]);
$channel_list[$k1]['user_list'] = $user_list;
}
$zone_list[$k] = $channel_list;
$zone_list[$k]['channel_list'] = $channel_list;
}
$this->response('success',Code::SUCCESS,$zone_list);
}
... ...
... ... @@ -300,5 +300,4 @@ class LoginController extends BaseController
return $data;
}
}
... ...