修改用户信息bug修复

This commit is contained in:
GYJ
2024-12-07 13:50:51 +08:00
parent 8c22e7ed95
commit 09c68c015b
3 changed files with 29 additions and 28 deletions

View File

@@ -480,8 +480,8 @@ public class CashController {
@Login
@GetMapping(value = "/withdraw")
@ApiOperation("发起提现 余额 金钱")
public Result withdraw(Long userId, Double amount) {
return cashOutService.withdraw(userId, amount, true);
public Result withdraw(Long userId, Double money) {
return cashOutService.withdraw(userId, money, true);
}