From 4c99ee7028c3fe58a2cd4b8273b22c75c45574fc Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期五, 16 五月 2025 10:27:41 +0800 Subject: [PATCH] 修改文档bug --- UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IUserInfoService.java | 31 ++++++++++++++++++------------- 1 files changed, 18 insertions(+), 13 deletions(-) diff --git a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IUserInfoService.java b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IUserInfoService.java index 864661e..ab45ec5 100644 --- a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IUserInfoService.java +++ b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IUserInfoService.java @@ -18,7 +18,7 @@ * @param phone * @return */ - ResultUtil queryCaptcha(String phone, Integer type) throws Exception; + ResultUtil queryCaptcha(String phone, Integer type, Integer language) throws Exception; /** @@ -39,11 +39,13 @@ * @param uType 分享用户的类别1:用户,2:司机 * @return */ - ResultUtil<LoginWarpper> captchaLogin(String phone, String code, String registIp, Double lat, Double lng,Integer uid,Integer uType, Integer userType, Integer language) throws Exception; + ResultUtil<LoginWarpper> captchaLogin(String phoneOperator, String phone, String code, String registIp, Double lat, Double lng,Integer uid,Integer uType, Integer userType, Integer language) throws Exception; - ResultUtil<LoginWarpper> captchaLogin(String phone, String code, Integer uid, Integer type, Integer userType, Integer language) throws Exception; + ResultUtil<LoginWarpper> captchaLogin(String phoneOperator, String phone, String code, Integer uid, Integer type, Integer userType, Integer language) throws Exception; + + /** @@ -77,7 +79,10 @@ */ ResultUtil<LoginWarpper> wxLogin(Integer type, String openid, String unionid, String jscode, String registIp, String registAreaCode, Integer sex, String nickName, String avatar,String loginType,String encryptedData, String iv,Integer uid, Integer language) throws Exception; - ResultUtil<LoginWarpper> wxIsLogin( String jscode) throws Exception; + + + + ResultUtil<LoginWarpper> wxIsLogin(Integer language, String jscode) throws Exception; /** @@ -87,7 +92,7 @@ * @return * @throws Exception */ - ResultUtil facebookLogin(String id, String name, String email, Double lat, Double lng, Integer uid, Integer language) throws Exception; + ResultUtil facebookLogin(String id, String name, String email, Double lat, Double lng, Integer uid, Integer language,int type) throws Exception; /** @@ -109,7 +114,7 @@ * @return * @throws Exception */ - ResultUtil bindingPhone(Integer uid, String phone, String code, Integer language) throws Exception; + ResultUtil bindingPhone(Integer uid, String phoneOperator, String phone, String code, Integer language) throws Exception; /** @@ -139,7 +144,7 @@ * @return * @throws Exception */ - Map<String, Object> queryUserInfo(Integer uid) throws Exception; + Map<String, Object> queryUserInfo(Integer language, Integer uid) throws Exception; /** @@ -148,7 +153,7 @@ * @return * @throws Exception */ - Map<String, Object> queryUser(String phone) throws Exception; + Map<String, Object> queryUser(Integer language, String phone) throws Exception; /** @@ -169,7 +174,7 @@ * @return * @throws Exception */ - ResultUtil depositBalance(Integer payType, String accountNumber, Double money, Integer uid, Integer type, Integer language) throws Exception; + ResultUtil depositBalance(Integer payType, String bankCardId, Double money, Integer uid, Integer type, Integer language) throws Exception; /** @@ -180,7 +185,7 @@ * @return * @throws Exception */ - ResultUtil updatePhone(String code, String phone, Integer uid, Integer language) throws Exception; + ResultUtil updatePhone(String code, String phoneOperator, String phone, Integer uid, Integer language) throws Exception; /** @@ -202,7 +207,7 @@ * @param uid * @throws Exception */ - void updateInfo(String avatar, String nickname, Integer sex, Date birthday, String email, String lastName, String firstName, Integer uid) throws Exception; + ResultUtil updateInfo(String avatar, String nickname, Integer sex, Date birthday, String email, String code, String lastName, String firstName, Integer uid, Integer language) throws Exception; /** * 获取实名认证数据 @@ -218,10 +223,9 @@ * @param id 用户id * @param order_id 工行订单id * @param paymentRecordId 预支付订单id - * @param type 支付类型(1=微信,2=支付宝) * @throws Exception */ - void payCancelUserBalance(Integer id, String order_id, Integer paymentRecordId, Integer type, Integer language) throws Exception; + void payCancelUserBalance(Integer id, String order_id, Integer paymentRecordId, Integer language) throws Exception; /** @@ -247,4 +251,5 @@ * @return */ Integer queryLanguage(Integer uid, Integer language); + } -- Gitblit v1.7.1