|
...
|
...
|
@@ -20,6 +20,7 @@ use App\Models\Devops\ServerConfig; |
|
|
|
use App\Models\Domain\DomainInfo;
|
|
|
|
use App\Models\Domain\DomainInfo as DomainInfoModel;
|
|
|
|
use App\Models\HomeCount\Count;
|
|
|
|
use App\Models\Industry\ProjectIndustry;
|
|
|
|
use App\Models\Inquiry\InquirySet;
|
|
|
|
use App\Models\Manage\BelongingGroup;
|
|
|
|
use App\Models\Manage\ManageHr;
|
|
...
|
...
|
@@ -1130,4 +1131,16 @@ class ProjectController extends BaseController |
|
|
|
}
|
|
|
|
$this->response('success');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取项目所有行业列表
|
|
|
|
* @author Akun
|
|
|
|
* @date 2025/03/05 11:40
|
|
|
|
*/
|
|
|
|
public function industryList()
|
|
|
|
{
|
|
|
|
$model = new ProjectIndustry();
|
|
|
|
$lists = $model->list(['status' => 1], 'id', ['id', 'industry_name'], 'asc');
|
|
|
|
$this->response('success', Code::SUCCESS, $lists);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|