mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-02 18:46:29 +00:00
feat(service): 添加交易报表功能, 微信Jsapi默认加密方式调整
This commit is contained in:
@@ -66,7 +66,7 @@ public class AliPayService {
|
||||
if (Objects.equals(payOrder.getMethod(), PayMethodEnum.WAP.getCode())) {
|
||||
payBody = this.wapPay(amount, payOrder);
|
||||
}
|
||||
// 程序支付
|
||||
// APP支付
|
||||
else if (Objects.equals(payOrder.getMethod(), PayMethodEnum.APP.getCode())) {
|
||||
payBody = this.appPay(amount, payOrder);
|
||||
}
|
||||
|
@@ -184,7 +184,7 @@ public class WechatPayV3Service {
|
||||
packageParams.put("package", result.getPackageValue());
|
||||
String signType = result.getSignType();
|
||||
if (result.getSignType() == null) {
|
||||
signType = "MD5";
|
||||
signType = "RSA";
|
||||
}
|
||||
packageParams.put("signType", signType);
|
||||
packageParams.put("paySign", result.getPaySign());
|
||||
|
Reference in New Issue
Block a user