This commit is contained in:
2025-02-18 11:53:54 +08:00
parent 24655a4644
commit 62e57b99a0
+3 -3
View File
@@ -36,10 +36,10 @@ class TransferBatches extends SmallProgram
$body["transfer_scene_report_infos"] = $transfer_scene_report_infos;
$body["transfer_detail_list"] = [$detail->toArray()];
$sign = $this->signature('POST' ,'/v3/transfer/batches' ,$json = json_encode($body ,JSON_UNESCAPED_UNICODE));
$sign = $this->signature('POST' ,'/v3/fund-app/mch-transfer/transfer-bills' ,$json = json_encode($body ,JSON_UNESCAPED_UNICODE));
$client = $this->createClient($sign ,$json);
$client->post('/v3/transfer/batches');
$client->post('/v3/fund-app/mch-transfer/transfer-bills');
$client->close();
$data = json_decode($client->getBody() ,TRUE);
@@ -49,4 +49,4 @@ class TransferBatches extends SmallProgram
return $data;
}
}
}
}