Browse Source

基础配置

master
张彭杰 1 year ago
parent
commit
1d3288ba3b
1 changed files with 2 additions and 2 deletions
  1. 4
      dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/walletaccount/user/WalletAccountUserQueryController.java

4
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<UserGetWalletAccountRecordVo> userPageWalletAccountRecord(@RequestParam("userId") Long userId,
PageUtil pageUtil,

Loading…
Cancel
Save