Compare commits
2 Commits
f30069fbad
...
b2925f1ab2
Author | SHA1 | Date |
---|---|---|
yaooo | b2925f1ab2 | |
yaooo | a768dc5887 |
|
@ -17,6 +17,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