From d9c4252c54adc1684de9b56ad810465945e442a8 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期日, 09 七月 2023 06:20:31 +0800 Subject: [PATCH] 更新支付相关功能及多语言 --- DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java | 10 +++++----- 1 files changed, 5 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 cf8f37e..18ace06 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 @@ -28,7 +28,7 @@ * @return * @throws Exception */ - ResultUtil grabOrder(Integer orderId, Integer uid) throws Exception; + ResultUtil grabOrder(Integer orderId, Integer uid, Integer language) throws Exception; @@ -49,7 +49,7 @@ * @return * @throws Exception */ - ResultUtil process(Integer orderId, Integer state, Double lon, Double lat, String address) throws Exception; + ResultUtil process(Integer orderId, Integer state, Double lon, Double lat, String address, Integer language) throws Exception; /** @@ -59,7 +59,7 @@ * @return * @throws Exception */ - ResultUtil fillInPickUpCode(Integer orderId, String pickUpCode) throws Exception; + ResultUtil fillInPickUpCode(Integer orderId, String pickUpCode, Integer language) throws Exception; /** @@ -69,7 +69,7 @@ * @return * @throws Exception */ - ResultUtil makeUpTheDifference(Integer orderId, Double difference) throws Exception; + ResultUtil makeUpTheDifference(Integer orderId, Double difference, Integer language) throws Exception; @@ -100,7 +100,7 @@ * @return * @throws Exception */ - ResultUtil grabOrder_(Integer orderId, Integer uid) throws Exception; + ResultUtil grabOrder_(Integer orderId, Integer uid, Integer language) throws Exception; -- Gitblit v1.7.1