添加支付密码

This commit is contained in:
韩鹏辉
2024-05-23 09:57:35 +08:00
parent 7c5e40cd38
commit 3087146696
2 changed files with 17 additions and 3 deletions

View File

@@ -58,9 +58,10 @@ public class PayController {
@GetMapping("accountPay")
public Result accountPay(@RequestHeader("token") String token,
@RequestParam("orderId") String orderId,
@RequestParam("memberId") String memberId
@RequestParam("memberId") String memberId,
@RequestParam("pwd") String pwd
) {
return payService.accountPay(orderId, memberId, token);
return payService.accountPay(orderId, memberId, token,pwd);
}
@RequestMapping("groupOrderPay")