新增获取甲方公司信息

This commit is contained in:
yaooo 2023-11-17 14:26:46 +08:00
parent a9da52bde7
commit 7e34baa0ba
1 changed files with 11 additions and 0 deletions

View File

@ -176,4 +176,15 @@
} }
return json($result); return json($result);
} }
//获取甲方公司信息
public function getPartyA(): Json
{
$params = $this->request->get();
$result = curl_post(env('project.worker_domain').'/middleapi/company/getPartyA',$params,$this->reqHeader);
if($result['code'] == 0){
return $this->fail($result['msg']);
}
return json($result);
}
} }