From 28a60b0977d66b75fb9a2c3306840bc18ec271f6 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期二, 19 八月 2025 17:51:18 +0800 Subject: [PATCH] 会员支付相关 --- cloud-server-management/src/main/java/com/dsh/course/feignClient/account/VipPaymentClient.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/cloud-server-management/src/main/java/com/dsh/course/feignClient/account/VipPaymentClient.java b/cloud-server-management/src/main/java/com/dsh/course/feignClient/account/VipPaymentClient.java index 8dec03d..e833ebd 100644 --- a/cloud-server-management/src/main/java/com/dsh/course/feignClient/account/VipPaymentClient.java +++ b/cloud-server-management/src/main/java/com/dsh/course/feignClient/account/VipPaymentClient.java @@ -6,6 +6,7 @@ import com.dsh.guns.modular.system.model.dto.VipRefundDto; import com.dsh.guns.modular.system.model.vo.VipPaymentListVO; import org.springframework.cloud.openfeign.FeignClient; +import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; @@ -23,7 +24,7 @@ */ @RequestMapping("/finance/vipPaymentList") List<VipPayment> registrationList(@RequestBody IncomeQuery query); - @RequestMapping("/finance/vipPayment") + @PostMapping("/finance/vipPayment") List<VipPaymentListVO> vipPayment(@RequestBody VipPaymentDto vipPaymentDto); @RequestMapping("/finance/refund") String refund(@RequestBody VipRefundDto vipRefundDto); -- Gitblit v1.7.1