1、接入paypal

2、修改支付宝支付
This commit is contained in:
2024-03-01 17:31:26 +08:00
parent e28502a00c
commit ee96759832
32 changed files with 1379 additions and 163 deletions

View File

@@ -1,5 +1,7 @@
package com.ai.da.service;
import com.paypal.orders.Order;
import java.util.Map;
public interface PaymentInfoService {
@@ -7,4 +9,6 @@ public interface PaymentInfoService {
void createPaymentInfo(String plainText);
void createPaymentInfoForAliPay(Map<String, String> params);
void createPaymentInfoForPayPal(Order order);
}