From e28d33c09405e246a2d75fcb1f69a9e8e9d911b8 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期四, 29 九月 2022 09:07:31 +0800 Subject: [PATCH] 更新最新代码 --- UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java index f5bd5e9..675c875 100644 --- a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java +++ b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java @@ -168,7 +168,7 @@ * @param uid * @throws Exception */ - ResultUtil addCancle(Integer id, String reason, String remark, Integer uid) throws Exception; + ResultUtil addCancle(Integer id, String reason, String remark, Integer uid, Integer language) throws Exception; /** @@ -195,4 +195,22 @@ * @throws Exception */ Map<String, Object> queryBalance(Integer orderId, Integer uid) throws Exception; + + + /** + * 获取订单详情 + * @param orderId + * @return + * @throws Exception + */ + Map<String, Object> queryOrderInfo(Integer orderId) throws Exception; + + + /** + * 获取优惠券列表 + * @param orderId + * @return + * @throws Exception + */ + List<Map<String, Object>> queryCoupon(Integer orderId, Integer uid, Integer pageNum, Integer size) throws Exception; } -- Gitblit v1.7.1