新增功能 -- 产品订阅 年度/月度
This commit is contained in:
@@ -2,12 +2,13 @@ package com.ai.da.service;
|
||||
|
||||
import com.ai.da.mapper.primary.entity.PaymentInfo;
|
||||
import com.ai.da.model.dto.AlipayHKCallbackDTO;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.paypal.orders.Order;
|
||||
import com.stripe.model.checkout.Session;
|
||||
import com.stripe.model.Invoice;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public interface PaymentInfoService {
|
||||
public interface PaymentInfoService extends IService<PaymentInfo> {
|
||||
|
||||
void createPaymentInfo(String plainText);
|
||||
|
||||
@@ -17,7 +18,7 @@ public interface PaymentInfoService {
|
||||
|
||||
void createPaymentInfoForAliPayHK(AlipayHKCallbackDTO alipayHKCallbackDTO);
|
||||
|
||||
void createPaymentInfoForStripe(Session session);
|
||||
String createPaymentInfoForStripe(Invoice invoice);
|
||||
|
||||
PaymentInfo getPaymentInfoByOrderId(String orderId);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user