1、stripe

2、游客到试用用户身份转换
This commit is contained in:
2024-07-15 13:42:18 +08:00
parent 925da9fa03
commit f03d32030d
8 changed files with 349 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
package com.ai.da.service;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public interface StripeService {
String pay(Integer quantity);
Boolean notify(HttpServletRequest request);
}