...
|
...
|
@@ -179,7 +179,7 @@ public abstract class AlipayServiceAbstract extends AbstractPayService { |
|
|
public Map<String, String> transferMoneyWhenExceedMillion(String transferOrderCode, String businessId, String alipayUid, String alipayAccount, String userName, BigDecimal transferAmount) throws Exception{
|
|
|
|
|
|
Map<String, String> queryParams = buildTransferParamsWhenExceedMillion(transferOrderCode, businessId, alipayUid, alipayAccount, userName, transferAmount);
|
|
|
String respTxt = sendOpenApiRequestWithException(transferOrderCode, queryParams);
|
|
|
String respTxt = sendMApiRequestWithException(transferOrderCode, queryParams);
|
|
|
|
|
|
Map<String, String> result;
|
|
|
|
...
|
...
|
@@ -235,6 +235,13 @@ public abstract class AlipayServiceAbstract extends AbstractPayService { |
|
|
logger.info("[{}] trade openapi resp: {}", orderCode, response);
|
|
|
return response;
|
|
|
}
|
|
|
|
|
|
private String sendMApiRequestWithException(String orderCode, Map<String, String> paramMap) throws Exception {
|
|
|
logger.info("[{}] send openapi request: {}", orderCode, paramMap);
|
|
|
String response = httpClient.postFormData(AlipayConfig.MAPI_URL, paramMap);
|
|
|
logger.info("[{}] trade openapi resp: {}", orderCode, response);
|
|
|
return response;
|
|
|
}
|
|
|
|
|
|
|
|
|
private PayQueryBo queryOpenApiConvert(String orderCode, String respText) {
|
...
|
...
|
|