From cf763f7ae2f86409c5f13b4fe36a25a8ec31cbf8 Mon Sep 17 00:00:00 2001 From: liujie <liujie> Date: 星期一, 04 九月 2023 09:26:55 +0800 Subject: [PATCH] 用户端 邮件中心 --- UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java | 15 +++++++-------- 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java index 45fa5e5..08b2ee3 100644 --- a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java +++ b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/specialTrain/server/IOrderPrivateCarService.java @@ -35,7 +35,8 @@ * @throws Exception */ ResultUtil<BaseWarpper> saveOrderPrivateCar(Integer serverCarModelId, Date travelTime, Integer reservation, Integer instead, String placementLon, String placementLat, - String startLon, String startLat, String startAddress, String endLon, String endLat, String endAddress, String name, String phone, Integer orderSource, Integer driverId, Integer type, Integer uid) throws Exception; + String startLon, String startLat, String startAddress, String endLon, String endLat, String endAddress, String name, + String phone, Integer orderSource, Integer driverId, Integer type, Integer uid, Integer language) throws Exception; /** @@ -74,7 +75,7 @@ * @return * @throws Exception */ - ResultUtil cancleOrderPrivateCar(Integer id, Integer payType, Integer cancleId, Integer type) throws Exception; + ResultUtil cancleOrderPrivateCar(Integer id, Integer payType, Integer bankCardId, Integer cancleId, Integer type, Integer language) throws Exception; String getOrderNum() throws Exception; @@ -115,7 +116,7 @@ * @return * @throws Exception */ - ResultUtil payPrivateCarOrder(Integer payType, Integer orderId, Integer couponId, Integer type)throws Exception; + ResultUtil payPrivateCarOrder(Integer payType, Integer bankCardId, Integer orderId, Integer couponId, Integer type, Integer language)throws Exception; @@ -138,7 +139,7 @@ * @return * @throws Exception */ - ResultUtil shareRedEnvelope(Integer orderId) throws Exception; + ResultUtil shareRedEnvelope(Integer orderId, Integer language) throws Exception; @@ -147,10 +148,9 @@ * 取消订单支付后的处理 * @param id 订单=id * @param order_id 工行支付单号 - * @param type 1=微信,2=支付宝 * @throws Exception */ - void payCancelOrderPrivateCar(Integer id, String order_id, Integer type) throws Exception; + void payCancelOrderPrivateCar(Integer id, String order_id, Integer language) throws Exception; @@ -158,10 +158,9 @@ * 支付完成后的订单处理 * @param id 订单=id * @param order_id 工行支付单号 - * @param type 1=微信,2=支付宝 * @throws Exception */ - void payOrderPrivateCarCallback(Integer id, String order_id, Integer type) throws Exception; + void payOrderPrivateCarCallback(Integer id, String order_id, Integer language) throws Exception; -- Gitblit v1.7.1