This commit is contained in:
牛叉闪闪
2024-08-29 16:51:15 +08:00
parent 40b8198c7e
commit adb1c28bb8
4 changed files with 22 additions and 15 deletions

View File

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