获取押金凭证
This commit is contained in:
parent
dcfc60ae56
commit
a768dc5887
|
@ -18,6 +18,17 @@
|
|||
return json($result);
|
||||
}
|
||||
|
||||
//押金凭证列表
|
||||
public function getDepositRechargeTransferVoucherList(): Json
|
||||
{
|
||||
$params=$this->request->get(['page_no','page_size','company_id']);
|
||||
$result = curl_post(env('project.worker_domain').'/middleapi/company/getDepositRechargeTransferVoucherList',$params,$this->reqHeader);
|
||||
if($result['code'] == 0){
|
||||
return $this->fail($result['msg']);
|
||||
}
|
||||
return json($result);
|
||||
}
|
||||
|
||||
//公司详情
|
||||
public function detail(): Json
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue