From 0dc953b5cb037762fb3eeed15ecca0b925ebe148 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期四, 23 三月 2023 00:13:27 +0800 Subject: [PATCH] 新增加司机端接口 --- user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java b/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java index 90e3eb1..bd8a81e 100644 --- a/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java +++ b/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java @@ -74,7 +74,21 @@ * @return * @throws Exception */ - OrderPriceWarpper queryOrderPrice(Integer uid, Long orderId, Integer payType) throws Exception; + OrderPriceWarpper queryOrderPrice(Integer uid, Long orderId) throws Exception; + + + /** + * 重新计算费用明细 + * @param orderId + * @param couponId + * @param payType + * @param balance + * @return + * @throws Exception + */ + OrderPriceWarpper calculationOfExpenses(Integer uid, Long orderId, Integer couponId, Integer payType, Double balance) throws Exception; + + /** * 获取支付页面的可用优惠券列表 -- Gitblit v1.7.1