Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/service/WechatPayService.java
2024-08-13 14:05:48 +08:00

35 lines
865 B
Java

package com.jsowell.pile.service;
public interface WechatPayService {
/**
* 获取微信支付参数
* @param dto
* @return
* @throws Exception
*/
// Map<String, Object> weixinPayV3(WeixinPayDTO dto) throws Exception;
/**
* 获取微信支付回调信息
* @param request
* @param body
* @return
* @throws Exception
*/
// Map<String, Object> wechatPayCallbackInfo(HttpServletRequest request, WechatPayNotifyParameter body) throws Exception;
/**
* 微信退款接口
* ApplyForARefund
*/
// WechatPayRefundResponse ApplyForWechatPayRefundV3(WechatPayRefundRequest request) throws JsonProcessingException;
/**
* 获取微信退款回调信息
* @param request
* @param body
* @return
*/
// Map<String, Object> wechatPayRefundCallbackInfo(HttpServletRequest request, WechatPayNotifyParameter body) throws Exception;
}