添加新的支付方式:Stripe

This commit is contained in:
2024-07-16 16:59:58 +08:00
parent 037a0d12ff
commit b9041d9c09
12 changed files with 407 additions and 178 deletions

View File

@@ -5,7 +5,11 @@ import javax.servlet.http.HttpServletResponse;
public interface StripeService {
String pay(Integer quantity);
String pay(Integer quantity, String returnUrl);
Boolean notify(HttpServletRequest request);
String refund(String amount, String orderId, String reason);
void checkOrderStatus(String orderNo);
}