WxRiderService.java 494 B

1234567891011121314151617181920212223
  1. package com.sqx.modules.pay.service;
  2. import com.sqx.common.utils.Result;
  3. import com.sqx.modules.pay.entity.PayDetails;
  4. import java.math.BigDecimal;
  5. /**
  6. * @author fang
  7. * @date 2020/2/26
  8. */
  9. public interface WxRiderService {
  10. Result payMoney(Long id, BigDecimal money, Integer type) throws Exception;
  11. Result payOrder(Long userId, String indentNumber, Integer type) throws Exception;
  12. String payBack(String resXml,Integer type);;
  13. boolean wxRefund(PayDetails payDetails);
  14. }