diff --git a/epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/dao/BindingAccountDao.java b/epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/dao/BindingAccountDao.java index 2d6b624400..9e5571029e 100644 --- a/epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/dao/BindingAccountDao.java +++ b/epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/dao/BindingAccountDao.java @@ -45,6 +45,6 @@ public interface BindingAccountDao extends BaseDao { * @param authAppId * @author zxc */ - void updateBindStatus(@Param("customerId")String customerId,@Param("authAppId")String authAppId); + void updateBindStatus(@Param("customerId")String customerId,@Param("clientType")String clientType); } \ No newline at end of file diff --git a/epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/service/impl/AppLetAuthorizationServiceImpl.java b/epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/service/impl/AppLetAuthorizationServiceImpl.java index bafd6849dc..b28550c54c 100644 --- a/epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/service/impl/AppLetAuthorizationServiceImpl.java +++ b/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); }