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.

29 lines
719 B

  1. package com.example.demo.service.cash;
  2. import com.example.demo.domain.DTO.BankDTO;
  3. import com.example.demo.domain.vo.cash.BankVO;
  4. import com.example.demo.domain.vo.coin.Result;
  5. import com.stripe.exception.StripeException;
  6. /**
  7. * @program: gold-java
  8. * @ClassName BankService
  9. * @description:
  10. * @author: Double
  11. * @create: 202511-21 10:43
  12. * @Version 1.0
  13. **/
  14. public interface BankService {
  15. //payment银行接口(批量)
  16. Result paymentAuto(BankDTO bankDTO);
  17. //payment银行接口(单个)
  18. Result getPayment(BankDTO bankDTO);
  19. //stripe银行接口(批量)
  20. Result stripeAuto(BankDTO bankDTO);
  21. //stripe银行接口(单个)
  22. Result getStripe(BankDTO bankDTO) throws StripeException;
  23. }