From f110effbc7576dffb4daa08fc5426617f063a943 Mon Sep 17 00:00:00 2001 From: wanggeng888 <450292408@qq.com> Date: Thu, 6 May 2021 17:54:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E5=86=8C=E5=90=8D?= =?UTF-8?q?=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/api/official/account/RegisterWechatController.java | 2 +- .../official/account/IOfficialAccountRegisterService.java | 2 +- .../account/impl/OfficialAccountRegisterServiceImpl.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/register-wechat/src/main/java/ink/wgink/register/wechat/controller/app/api/official/account/RegisterWechatController.java b/register-wechat/src/main/java/ink/wgink/register/wechat/controller/app/api/official/account/RegisterWechatController.java index ec1a15cb..9359d5a7 100644 --- a/register-wechat/src/main/java/ink/wgink/register/wechat/controller/app/api/official/account/RegisterWechatController.java +++ b/register-wechat/src/main/java/ink/wgink/register/wechat/controller/app/api/official/account/RegisterWechatController.java @@ -43,7 +43,7 @@ public class RegisterWechatController extends DefaultBaseController { @CheckRequestBodyAnnotation public synchronized SuccessResult phone(@RequestBody OfficialAccountRegisterPhoneVO officialAccountRegisterPhoneVO) throws Exception { Map params = requestParams(); - officialAccountRegisterService.phoneRegister(officialAccountRegisterPhoneVO, params); + officialAccountRegisterService.registerPhone(officialAccountRegisterPhoneVO, params); return new SuccessResult(); } diff --git a/register-wechat/src/main/java/ink/wgink/register/wechat/service/official/account/IOfficialAccountRegisterService.java b/register-wechat/src/main/java/ink/wgink/register/wechat/service/official/account/IOfficialAccountRegisterService.java index 47e4f61d..17146a01 100644 --- a/register-wechat/src/main/java/ink/wgink/register/wechat/service/official/account/IOfficialAccountRegisterService.java +++ b/register-wechat/src/main/java/ink/wgink/register/wechat/service/official/account/IOfficialAccountRegisterService.java @@ -23,5 +23,5 @@ public interface IOfficialAccountRegisterService { * @param params * @throws Exception */ - void phoneRegister(OfficialAccountRegisterPhoneVO officialAccountRegisterPhoneVO, Map params) throws Exception; + void registerPhone(OfficialAccountRegisterPhoneVO officialAccountRegisterPhoneVO, Map params) throws Exception; } diff --git a/register-wechat/src/main/java/ink/wgink/register/wechat/service/official/account/impl/OfficialAccountRegisterServiceImpl.java b/register-wechat/src/main/java/ink/wgink/register/wechat/service/official/account/impl/OfficialAccountRegisterServiceImpl.java index 6c2a245f..20f9f813 100644 --- a/register-wechat/src/main/java/ink/wgink/register/wechat/service/official/account/impl/OfficialAccountRegisterServiceImpl.java +++ b/register-wechat/src/main/java/ink/wgink/register/wechat/service/official/account/impl/OfficialAccountRegisterServiceImpl.java @@ -36,7 +36,7 @@ public class OfficialAccountRegisterServiceImpl extends DefaultBaseService imple private IOfficialAccountUserService officialAccountUserService; @Override - public void phoneRegister(OfficialAccountRegisterPhoneVO officialAccountRegisterPhoneVO, Map params) throws Exception { + public void registerPhone(OfficialAccountRegisterPhoneVO officialAccountRegisterPhoneVO, Map params) throws Exception { OfficialAccountUserPO officialAccountUserPO = officialAccountUserService.getPOByUserCode(officialAccountRegisterPhoneVO.getUserCode()); if (officialAccountUserPO == null) { throw new SearchException("验证码错误");