helixiao 1 년 전
부모
커밋
2acceae58b
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/main/java/com/ydtech/modules/admin/controller/APPPartnerController.java

+ 3 - 3
src/main/java/com/ydtech/modules/admin/controller/APPPartnerController.java

@@ -213,7 +213,7 @@ public class APPPartnerController extends BaseController {
             return sysPartnerService.loginAlipay(alipayBindVo);
         } catch (AlipayApiException e) {
             log.info(e.getMessage());
-            throw new SystemException("支付宝授权失败");
+            throw new SystemException("支付宝登录失败");
         }
     }
 
@@ -262,7 +262,7 @@ public class APPPartnerController extends BaseController {
             return sysPartnerService.loginWechat(wechatLoginVo);
         } catch (WxErrorException e) {
             log.info(e.getMessage());
-            throw new SystemException("微信授权失败");
+            throw new SystemException("微信登录失败");
         }
     }
 
@@ -281,7 +281,7 @@ public class APPPartnerController extends BaseController {
             return sysPartnerService.bindWechat(wechatBindVo, userId);
         } catch (WxErrorException e) {
             log.info(e.getMessage());
-            throw new SystemException("微信授权失败");
+            throw new SystemException("微信绑定失败");
         }
     }