更新上传押金凭证

This commit is contained in:
yaooo 2023-11-16 13:58:05 +08:00
parent b2925f1ab2
commit 83ec214d75
1 changed files with 11 additions and 0 deletions

View File

@ -29,6 +29,17 @@
return json($result);
}
//上传押金凭证
public function depositRechargeTransferVoucher(): Json
{
$params=$this->request->post(['company_id','deposit','voucher']);
$result = curl_post(env('project.worker_domain').'/middleapi/company/depositRechargeTransferVoucher',$params,$this->reqHeader);
if($result['code'] == 0){
return $this->fail($result['msg']);
}
return json($result);
}
//公司详情
public function detail(): Json
{