This commit is contained in:
wangff
2025-11-20 18:16:18 +08:00
parent 300bcefa72
commit f53b77b657
2 changed files with 4 additions and 4 deletions

View File

@@ -39,8 +39,8 @@ public class WalletController {
} }
@ApiOperation("账户详情") @ApiOperation("账户详情")
@GetMapping("/accountInfo") @PostMapping("/accountInfo")
public ResponseResult<AccountInfoVO> getAccountInfo(AccountQueryRequest request) { public ResponseResult<AccountInfoVO> getAccountInfo(@RequestBody AccountQueryRequest request) {
return ResponseResult.success(walletService.getAccountInfo(request)); return ResponseResult.success(walletService.getAccountInfo(request));
} }

View File

@@ -64,8 +64,8 @@ public class MiniWalletController {
} }
@ApiOperation("账户详情") @ApiOperation("账户详情")
@GetMapping("/accountInfo") @PostMapping("/accountInfo")
public ResponseResult<AccountInfoVO> getAccountInfo(AccountQueryRequest request) { public ResponseResult<AccountInfoVO> getAccountInfo(@RequestBody AccountQueryRequest request) {
return ResponseResult.success(walletService.getAccountInfo(request)); return ResponseResult.success(walletService.getAccountInfo(request));
} }