Browse Source

银行卡

master
张彭杰 1 year ago
parent
commit
7c399a2439
1 changed files with 2 additions and 2 deletions
  1. 4
      dating-agency-mall-server/src/main/java/com/qniao/dam/api/command/withdrawaudit/user/WithdrawAuditUserCommandController.java

4
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());
}
}
Loading…
Cancel
Save