wangyingyang

update refund securitykey

......@@ -17,4 +17,5 @@ public class BusinessConfig {
private String payUrl;
private String payClientId;
private String cancelPayUrl;
private String refundSecurityKey;
}
......
......@@ -377,7 +377,7 @@ public class PayServiceClient {
Base64.encodeBase64String(payContentStr.getBytes()), StandardCharsets.UTF_8);
// 构建signinfo
String signInfoStr = appId + orderById.getId() + payTime + businessConfig.getPayClientId();
String signInfoStr = appId + orderById.getId() + payTime + businessConfig.getRefundSecurityKey();
String signInfo = DigestUtils.sha1Hex(signInfoStr.getBytes());
// 构建请求
......
......@@ -81,6 +81,7 @@ business-config.clientCustomerQueryUrl = https://nutri.amcare.com.cn/v3/clientcu
business-config.payUrl = http://10.2.5.162:21051/API/Microapp/CreateOrder?appid={0}
business-config.payClientId = Order
business-config.cancelPayUrl = http://10.2.5.162:21051/frame/requestbase64
business-config.refundSecurityKey = 0987654321
##Actuator\u914D\u7F6E
management.server.port=8088
......