添加员工折扣

This commit is contained in:
牛叉闪闪 2024-08-20 17:26:20 +08:00
parent 653254f9f3
commit fd45264b0d
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ public class PayController {
@RequestParam("orderId") String orderId,
@RequestParam("payAmount") BigDecimal payAmount,
@RequestParam("discountAmount") BigDecimal discountAmount){
return payService.bankPay(orderId,token);
return payService.bankPay(orderId,token,payAmount,discountAmount);
}