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()); } }