You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package com.example.demo.service.cash;
import com.example.demo.domain.DTO.BankDTO;import com.example.demo.domain.vo.cash.BankVO;import com.example.demo.domain.vo.coin.Result;import com.stripe.exception.StripeException;
/** * @program: gold-java * @ClassName BankService * @description: * @author: Double * @create: 2025−11-21 10:43 * @Version 1.0 **/
public interface BankService { //payment银行接口(批量)
Result paymentAuto(BankDTO bankDTO);
//payment银行接口(单个)
Result getPayment(BankDTO bankDTO);
//stripe银行接口(批量)
Result stripeAuto(BankDTO bankDTO);
//stripe银行接口(单个)
Result getStripe(BankDTO bankDTO) throws StripeException;}
|