16 lines
369 B
Java
16 lines
369 B
Java
package com.ai.da.service;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
public interface StripeService {
|
|
|
|
String pay(Integer quantity, String returnUrl);
|
|
|
|
Boolean notify(HttpServletRequest request);
|
|
|
|
String refund(String amount, String orderId, String reason);
|
|
|
|
void checkOrderStatus(String orderNo);
|
|
}
|