From ad971e327c012eaf041a32ce95682619505fb64a Mon Sep 17 00:00:00 2001 From: zhibing.pu <393733352@qq.com> Date: 星期五, 12 四月 2024 22:38:32 +0800 Subject: [PATCH] 新增加功能 --- DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java | 18 +++++++++++++----- 1 files changed, 13 insertions(+), 5 deletions(-) diff --git a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java index b19a3aa..2418b70 100644 --- a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java +++ b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java @@ -17,7 +17,7 @@ * @return * @throws Exception */ - Map<String, Object> queryPushOrder(Integer orderId) throws Exception; + Map<String, Object> queryPushOrder(Integer orderId, Integer language) throws Exception; @@ -38,7 +38,7 @@ * @return * @throws Exception */ - Map<String, Object> queryOrderInfo(Integer orderId) throws Exception; + Map<String, Object> queryOrderInfo(Integer language, Integer orderId) throws Exception; @@ -49,7 +49,7 @@ * @return * @throws Exception */ - ResultUtil process(Integer orderId, Integer state, Double lon, Double lat, String address, Integer language) throws Exception; + ResultUtil process(Integer orderId, Integer state, Double lon, Double lat, String address, String pickUpCode, Integer language) throws Exception; /** @@ -79,7 +79,7 @@ * @return * @throws Exception */ - List<Map<String, Object>> queryOrderList(Integer driverId) throws Exception; + List<Map<String, Object>> queryOrderList(Integer driverId, Integer language) throws Exception; @@ -90,7 +90,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; /** @@ -129,4 +129,12 @@ * @throws Exception */ void payOrderLogisticsCallback(Integer id, String order_id, Integer language) throws Exception; + + + /** + * 处理乘客修改终点 + * @param orderId + * @param status + */ + void updateEndAddress(Integer orderId, Integer status); } -- Gitblit v1.7.1