移除微信支付相关

This commit is contained in:
Guoqs
2024-08-13 14:05:48 +08:00
parent 48d80872aa
commit b031ea4583
12 changed files with 345 additions and 399 deletions

View File

@@ -317,9 +317,9 @@ public class OrderService {
* @return
* @throws Exception
*/
public Map<String, Object> weixinPayV3(WeixinPayDTO dto) throws Exception {
return wechatPayService.weixinPayV3(dto);
}
// public Map<String, Object> weixinPayV3(WeixinPayDTO dto) throws Exception {
// return wechatPayService.weixinPayV3(dto);
// }
/**
* 用户停止充电
@@ -388,10 +388,10 @@ public class OrderService {
*
* @param dto
*/
public void weChatRefund(ApplyRefundDTO dto) {
log.info("微信退款接口 param:{}", JSON.toJSONString(dto));
orderBasicInfoService.weChatRefund(dto);
}
// public void weChatRefund(ApplyRefundDTO dto) {
// log.info("微信退款接口 param:{}", JSON.toJSONString(dto));
// orderBasicInfoService.weChatRefund(dto);
// }
/**
* 汇付退款
@@ -543,7 +543,7 @@ public class OrderService {
*/
public void wechatPayRefundCallback(HttpServletRequest request, WechatPayNotifyParameter body) throws Exception {
// 获取微信退款成功返回的信息
Map<String, Object> map = wechatPayService.wechatPayRefundCallbackInfo(request, body);
// Map<String, Object> map = wechatPayService.wechatPayRefundCallbackInfo(request, body);
}
/**