|
|
@@ -302,6 +302,11 @@ public class UserBackendServiceImpl implements UserBackendService {
|
|
|
|
|
|
userInfo.setIdentityValidCode(userValid.getValidCode());
|
|
|
userDao.save(userInfo);
|
|
|
+
|
|
|
+ List<App> appList = appDao.findAll();
|
|
|
+ JSONObject data = JacksonUtils.fromJson(JacksonUtils.toJson(userInfo.toView()), JSONObject.class);
|
|
|
+ syncThreadPool.transferDataToOtherPlatforms(BackInfoType.BACK_USER_INFO, appList, data, "[后台]用户身份认证不通过");
|
|
|
+
|
|
|
return userInfo;
|
|
|
}
|
|
|
|