充值功能--接入支付宝

This commit is contained in:
2024-02-14 12:10:15 +08:00
parent 533b54a768
commit 7f33597c02
31 changed files with 1635 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
package com.ai.da.service;
import java.util.Map;
public interface PaymentInfoService {
void createPaymentInfo(String plainText);
void createPaymentInfoForAliPay(Map<String, String> params);
}