This commit is contained in:
777
2026-01-22 00:12:46 +08:00
parent e64478b8ab
commit 550855360c
2 changed files with 4 additions and 1 deletions

View File

@@ -136,6 +136,9 @@ public enum TrdPayTypeEnum {
* Wsz6yTi6AG5X6Cxt5Zt6rXKGKXitsX5I
*/
V13("https://pp123.bghyvwk.cn","/mapi.php","/api.php","/api/pay/trd/notify/v13","success"),
/**
* https://efps.epaylinks.cn/open/index.html#/document.html?documentId=102&firstLevelId=10003&contentId=1097
*/
V14("https://efps.epaylinks.cn","/mapi.php","/api.php","/api/pay/trd/notify/v14","success"),
/**
* 下单网关http://n5d4.damiepay.paysanguo.com/Pay_Index.html

View File

@@ -125,7 +125,7 @@ public class RestTemplateUtil {
headers.add(entry.getKey(),entry.getValue());
}
HttpEntity<Object> request = new HttpEntity<>(object, headers);
return NO_SSL_REST_TEMPLATE.postForObject(url, request, String.class);
return restTemplate.postForObject(url, request, String.class);
}