Browse Source

微信第三方平台-授权回调

master
zxc 5 years ago
parent
commit
074741ebbf
  1. 2
      epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/dao/BindingAccountDao.java
  2. 2
      epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/service/impl/AppLetAuthorizationServiceImpl.java

2
epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/dao/BindingAccountDao.java

@ -45,6 +45,6 @@ public interface BindingAccountDao extends BaseDao<BindingAccountEntity> {
* @param authAppId
* @author zxc
*/
void updateBindStatus(@Param("customerId")String customerId,@Param("authAppId")String authAppId);
void updateBindStatus(@Param("customerId")String customerId,@Param("clientType")String clientType);
}

2
epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/service/impl/AppLetAuthorizationServiceImpl.java

@ -96,7 +96,7 @@ public class AppLetAuthorizationServiceImpl implements AppLetAuthorizationServic
log.error("解绑失败" + data);
throw new RenException("解绑失败" + data);
}
bindingAccountDao.updateBindStatus(customerId,authAppId);
bindingAccountDao.updateBindStatus(customerId,clientType);
}

Loading…
Cancel
Save