解析所有发起购买的客户端ip地址

This commit is contained in:
2025-01-07 11:07:49 +08:00
parent e4a8bf80e9
commit 6a861305d6
19 changed files with 204 additions and 66 deletions

View File

@@ -10,7 +10,7 @@ import java.util.Map;
public interface StripeService {
String pay(ProductPurchaseDTO productPurchaseDTO);
String pay(ProductPurchaseDTO productPurchaseDTO, HttpServletRequest request);
Boolean notify(HttpServletRequest request);
@@ -48,5 +48,5 @@ public interface StripeService {
String detachCustomerAllPaymentMethod(String name, String email);
String getIp2(HttpServletRequest request);
// Map getIp(HttpServletRequest request);
}