From 1d3288ba3bdc583d7a41d67aae039f46407c4326 Mon Sep 17 00:00:00 2001 From: Derran Date: Mon, 29 Apr 2024 16:22:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=BA=E7=A1=80=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../walletaccount/user/WalletAccountUserQueryController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/walletaccount/user/WalletAccountUserQueryController.java b/dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/walletaccount/user/WalletAccountUserQueryController.java index 4f912f7..cb6cf99 100644 --- a/dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/walletaccount/user/WalletAccountUserQueryController.java +++ b/dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/walletaccount/user/WalletAccountUserQueryController.java @@ -23,7 +23,7 @@ public class WalletAccountUserQueryController { @Resource private WalletAccountQueryService walletAccountQueryService; - @PostMapping("get/wallet-account") + @GetMapping("get/wallet-account") @ApiOperation("用户获取钱包账号") public UserGetWalletAccountVo userGetWalletAccount(@RequestParam("userId") Long userId) { UserGetWalletAccountVo vo = new UserGetWalletAccountVo(); @@ -34,7 +34,7 @@ public class WalletAccountUserQueryController { return vo; } - @PostMapping("get/wallet-account-record/page") + @GetMapping("get/wallet-account-record/page") @ApiOperation("用户获取钱包账号记录") public QnPage userPageWalletAccountRecord(@RequestParam("userId") Long userId, PageUtil pageUtil,