更新上传押金凭证
This commit is contained in:
parent
b2925f1ab2
commit
83ec214d75
|
@ -28,6 +28,17 @@
|
||||||
}
|
}
|
||||||
return json($result);
|
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
|
public function detail(): Json
|
||||||
|
|
Loading…
Reference in New Issue