From 7c399a243934a5b8ba54661a1bf854fdc174831f Mon Sep 17 00:00:00 2001 From: Derran Date: Thu, 14 Nov 2024 17:29:43 +0800 Subject: [PATCH] =?UTF-8?q?=E9=93=B6=E8=A1=8C=E5=8D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../user/WithdrawAuditUserCommandController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dating-agency-mall-server/src/main/java/com/qniao/dam/api/command/withdrawaudit/user/WithdrawAuditUserCommandController.java b/dating-agency-mall-server/src/main/java/com/qniao/dam/api/command/withdrawaudit/user/WithdrawAuditUserCommandController.java index 0cc9ea1..c2ae26c 100644 --- a/dating-agency-mall-server/src/main/java/com/qniao/dam/api/command/withdrawaudit/user/WithdrawAuditUserCommandController.java +++ b/dating-agency-mall-server/src/main/java/com/qniao/dam/api/command/withdrawaudit/user/WithdrawAuditUserCommandController.java @@ -65,7 +65,7 @@ public class WithdrawAuditUserCommandController { @PostMapping("calculate/withdraw-service-fee") @ApiOperation("用户计算提现手续费") - public UserCalculateWithdrawServiceFeeVo userCalculateWithdrawServiceFee(UserCalculateWithdrawServiceFeeDto dto) { - return withdrawAuditApplicationService.calculateServiceFee(dto.getWithdrawAmount(),dto.getWithdrawType()); + public UserCalculateWithdrawServiceFeeVo userCalculateWithdrawServiceFee(@RequestBody UserCalculateWithdrawServiceFeeDto dto) { + return withdrawAuditApplicationService.calculateServiceFee(dto.getWithdrawAmount(), dto.getWithdrawType()); } }