密码校验修改

This commit is contained in:
2024-08-30 11:16:36 +08:00
parent 32590bb35a
commit 187a757575
2 changed files with 33 additions and 13 deletions

View File

@@ -99,8 +99,9 @@ public class MemberController {
@RequestHeader("clientType") String clientType,
@RequestParam("flowId") String flowId,
@RequestParam("remark") String remark,
@RequestParam("amount") String amount
@RequestParam("amount") String amount,
@RequestParam("pwd") String pwd
){
return memberService.returnAccount(flowId,remark,amount);
return memberService.returnAccount(token, flowId,remark,amount, pwd);
}
}