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/system/service/IDriverService.java | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IDriverService.java b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IDriverService.java index 2471ea5..169b98f 100644 --- a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IDriverService.java +++ b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IDriverService.java @@ -44,7 +44,7 @@ * 司机提交注册申请 * @throws Exception */ - ResultUtil registeredDriver(String phone, String code, String password, Integer uid, Integer type, Integer userType, Integer language) throws Exception; + ResultUtil registeredDriver(String phoneOperator, String phone, String code, String password, Integer uid, Integer type, Integer userType, Integer language) throws Exception; /** @@ -57,7 +57,7 @@ * @return * @throws Exception */ - ResultUtil<LoginWarpper> registeredDriver(String phone, String code, String password,Integer uid,Integer uType) throws Exception; + ResultUtil<LoginWarpper> registeredDriver(String phoneOperator, String phone, String code, String password,Integer uid,Integer uType, Integer language) throws Exception; /** @@ -106,7 +106,7 @@ * @return * @throws Exception */ - ResultUtil<LoginWarpper> driverLogin(String phone, String password) throws Exception; + ResultUtil<LoginWarpper> driverLogin(String phone, String password, Integer language) throws Exception; /** @@ -133,7 +133,7 @@ * @return * @throws Exception */ - ResultUtil work(Integer uid, String type) throws Exception; + ResultUtil work(Integer uid, String type, Integer language) throws Exception; @@ -143,7 +143,7 @@ * @return * @throws Exception */ - ResultUtil work2(Integer uid, String type) throws Exception; + ResultUtil work2(Integer uid, String type, Integer language) throws Exception; /** @@ -181,7 +181,7 @@ * @return * @throws Exception */ - ResultUtil updatePhone(String phone, String code, Integer uid) throws Exception; + ResultUtil updatePhone(String phoneOperator, String phone, String code, Integer uid, Integer language) throws Exception; /** @@ -218,7 +218,7 @@ * @return * @throws Exception */ - ResultUtil replaceCar(Integer carId, Integer uid) throws Exception; + ResultUtil replaceCar(Integer carId, Integer uid, Integer language) throws Exception; /** @@ -300,7 +300,7 @@ * @param jobNum * @return */ - ResultUtil loginByJobNumber(String jobNum); + ResultUtil loginByJobNumber(String jobNum, Integer language); /** @@ -317,7 +317,7 @@ * @return * @throws Exception */ - ResultUtil loginByIdentification(String identification) throws Exception; + ResultUtil loginByIdentification(String identification, Integer language) throws Exception; /** @@ -326,7 +326,7 @@ * @return * @throws Exception */ - ResultUtil loginByTaxiAptitudeCard(String taxiAptitudeCard) throws Exception; + ResultUtil loginByTaxiAptitudeCard(String taxiAptitudeCard, Integer language) throws Exception; /** @@ -343,7 +343,7 @@ * @return * @throws Exception */ - ResultUtil verificationPassword(String password, Integer driverId) throws Exception; + ResultUtil verificationPassword(String password, Integer driverId, Integer language) throws Exception; /** @@ -353,7 +353,7 @@ * @return * @throws Exception */ - ResultUtil setWithdrawPassword(String withdrawPassword, Integer driverId) throws Exception; + ResultUtil setWithdrawPassword(String withdrawPassword, Integer driverId, Integer language) throws Exception; /** @@ -363,7 +363,7 @@ * @return * @throws Exception */ - ResultUtil verificationWithdrawPassword(String withdrawPassword, Integer driverId) throws Exception; + ResultUtil verificationWithdrawPassword(String withdrawPassword, Integer driverId, Integer language) throws Exception; /** -- Gitblit v1.7.1