2025-08-21 15:47:21 +08:00
|
|
|
package org.dromara.app;
|
|
|
|
|
2025-09-25 15:19:18 +08:00
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
2025-08-21 15:47:21 +08:00
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 买家端,退款回调
|
|
|
|
*
|
|
|
|
* @author Chopper
|
|
|
|
* @since 2020-12-18 16:59
|
|
|
|
*/
|
2025-09-25 15:19:18 +08:00
|
|
|
@Tag(name = "买家端,退款回调")
|
2025-08-21 15:47:21 +08:00
|
|
|
@RestController
|
|
|
|
@RequestMapping("/buyer/payment/cashierRefund")
|
|
|
|
@RequiredArgsConstructor
|
|
|
|
public class CashierRefundController {
|
|
|
|
|
|
|
|
|
|
|
|
// private final RefundSupport refundSupport;
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// @ApiOperation(value = "退款通知")
|
|
|
|
// @RequestMapping(value = "/notify/{paymentMethod}", method = {RequestMethod.GET, RequestMethod.POST})
|
|
|
|
// public void notify(HttpServletRequest request, @PathVariable String paymentMethod) {
|
|
|
|
// PaymentMethodEnum paymentMethodEnum = PaymentMethodEnum.valueOf(paymentMethod);
|
|
|
|
// refundSupport.notify(paymentMethodEnum, request);
|
|
|
|
// }
|
|
|
|
}
|