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,