2024-02-14 12:10:15 +08:00
|
|
|
package com.ai.da.service;
|
|
|
|
|
|
2024-03-01 17:31:26 +08:00
|
|
|
import com.paypal.orders.Order;
|
|
|
|
|
|
2024-02-14 12:10:15 +08:00
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
public interface PaymentInfoService {
|
|
|
|
|
|
|
|
|
|
void createPaymentInfo(String plainText);
|
|
|
|
|
|
|
|
|
|
void createPaymentInfoForAliPay(Map<String, String> params);
|
2024-03-01 17:31:26 +08:00
|
|
|
|
|
|
|
|
void createPaymentInfoForPayPal(Order order);
|
2024-02-14 12:10:15 +08:00
|
|
|
}
|