From 387f61d55a8e20bc772b026cba4f8c34dfce5665 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期三, 07 二月 2024 11:20:28 +0800 Subject: [PATCH] 更新代码 --- DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java | 24 +++++++++++++++++------- 1 files changed, 17 insertions(+), 7 deletions(-) diff --git a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java index 3d1edcf..f4a7fd3 100644 --- a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java +++ b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java @@ -20,7 +20,7 @@ * @return * @throws Exception */ - List<Map<String, Object>> queryOrderList(Integer state, Integer driverId) throws Exception; + List<Map<String, Object>> queryOrderList(Integer state, Integer driverId, Integer language) throws Exception; @@ -32,7 +32,7 @@ * @return * @throws Exception */ - List<Map<String, Object>> queryMyAllOrder(Integer state, Integer uid) throws Exception; + List<Map<String, Object>> queryMyAllOrder(Integer state, Integer uid, Integer language) throws Exception; @@ -43,7 +43,7 @@ * @return * @throws Exception */ - Map<String, Object> queryPushOrder(Integer orderId) throws Exception; + Map<String, Object> queryPushOrder(Integer orderId, Integer language) throws Exception; @@ -54,7 +54,7 @@ * @return * @throws Exception */ - ResultUtil grabOrder(Integer orderId, Integer uid) throws Exception; + ResultUtil grabOrder(Integer orderId, Integer uid, Integer language) throws Exception; /** @@ -63,7 +63,7 @@ * @return * @throws Exception */ - Map<String, Object> queryOrderInfo(Integer orderId) throws Exception; + Map<String, Object> queryOrderInfo(Integer language, Integer orderId) throws Exception; @@ -74,7 +74,7 @@ * @return * @throws Exception */ - ResultUtil process(Integer orderId, Integer state, Double lon, Double lat, String address,String phone) throws Exception; + ResultUtil process(Integer orderId, Integer state, Double lon, Double lat, String address,String phone, Integer language) throws Exception; /** @@ -86,7 +86,7 @@ * @return * @throws Exception */ - ResultUtil confirmFees(Integer orderId, Integer type, Double parkingFee, Double crossingFee) throws Exception; + ResultUtil confirmFees(Integer language, Integer orderId, Integer type, Double parkingFee, Double crossingFee) throws Exception; /** @@ -124,4 +124,14 @@ List<OrderPrivateCar> taskMidAxbUnBindSend(); List<OrderPrivateCar> getSmsOrderList(); + + + + /** + * 支付完成后的订单处理 + * @param id 订单=id + * @param order_id 工行支付单号 + * @throws Exception + */ + void payOrderPrivateCarCallback(Integer id, String order_id, Integer language) throws Exception; } -- Gitblit v1.7.1