获取押金凭证
This commit is contained in:
parent
dcfc60ae56
commit
a768dc5887
|
@ -17,6 +17,17 @@
|
||||||
}
|
}
|
||||||
return json($result);
|
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
|
public function detail(): Json
|
||||||
|
|
Loading…
Reference in New Issue