新增获取甲方公司信息
This commit is contained in:
parent
a9da52bde7
commit
7e34baa0ba
|
@ -176,4 +176,15 @@
|
|||
}
|
||||
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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue