fix
This commit is contained in:
@@ -39,8 +39,8 @@ public class WalletController {
|
||||
}
|
||||
|
||||
@ApiOperation("账户详情")
|
||||
@GetMapping("/accountInfo")
|
||||
public ResponseResult<AccountInfoVO> getAccountInfo(AccountQueryRequest request) {
|
||||
@PostMapping("/accountInfo")
|
||||
public ResponseResult<AccountInfoVO> getAccountInfo(@RequestBody AccountQueryRequest request) {
|
||||
return ResponseResult.success(walletService.getAccountInfo(request));
|
||||
}
|
||||
|
||||
|
||||
@@ -64,8 +64,8 @@ public class MiniWalletController {
|
||||
}
|
||||
|
||||
@ApiOperation("账户详情")
|
||||
@GetMapping("/accountInfo")
|
||||
public ResponseResult<AccountInfoVO> getAccountInfo(AccountQueryRequest request) {
|
||||
@PostMapping("/accountInfo")
|
||||
public ResponseResult<AccountInfoVO> getAccountInfo(@RequestBody AccountQueryRequest request) {
|
||||
return ResponseResult.success(walletService.getAccountInfo(request));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user