|
@@ -238,7 +238,7 @@ public class CommonUserServiceImpl extends ServiceImpl<CommonUserMapper, CommonU
|
|
userRedisTemplate.opsForValue().set(Const.USER_REDIS_PREFIX + accessToken, JSONObject.toJSONString(userDTO));
|
|
userRedisTemplate.opsForValue().set(Const.USER_REDIS_PREFIX + accessToken, JSONObject.toJSONString(userDTO));
|
|
this.updateById(userDO);
|
|
this.updateById(userDO);
|
|
List<IdentityAuthenticationInfo> identityAuthenticationInfos = iIdentityAuthenticationInfoService.selectList(new EntityWrapper<IdentityAuthenticationInfo>().eq("customer_phone",userDTO.getPhone())
|
|
List<IdentityAuthenticationInfo> identityAuthenticationInfos = iIdentityAuthenticationInfoService.selectList(new EntityWrapper<IdentityAuthenticationInfo>().eq("customer_phone",userDTO.getPhone())
|
|
- .eq("delete_flag","0"));
|
|
|
|
|
|
+ .eq("delete_flag","0").eq("authentication_status","7"));
|
|
userDTO.setIdentityAuthenticationInfoList(identityAuthenticationInfos);
|
|
userDTO.setIdentityAuthenticationInfoList(identityAuthenticationInfos);
|
|
return userDTO;
|
|
return userDTO;
|
|
}
|
|
}
|
|
@@ -307,7 +307,7 @@ public class CommonUserServiceImpl extends ServiceImpl<CommonUserMapper, CommonU
|
|
userRedisTemplate.opsForValue().set(Const.USER_REDIS_PREFIX + accessToken, JSONObject.toJSONString(user));
|
|
userRedisTemplate.opsForValue().set(Const.USER_REDIS_PREFIX + accessToken, JSONObject.toJSONString(user));
|
|
this.updateById(userDO);
|
|
this.updateById(userDO);
|
|
List<IdentityAuthenticationInfo> identityAuthenticationInfos = iIdentityAuthenticationInfoService.selectList(new EntityWrapper<IdentityAuthenticationInfo>().eq("customer_phone",userDTO.getPhone())
|
|
List<IdentityAuthenticationInfo> identityAuthenticationInfos = iIdentityAuthenticationInfoService.selectList(new EntityWrapper<IdentityAuthenticationInfo>().eq("customer_phone",userDTO.getPhone())
|
|
- .eq("delete_flag","0"));
|
|
|
|
|
|
+ .eq("delete_flag","0").eq("authentication_status","7"));
|
|
user.setIdentityAuthenticationInfoList(identityAuthenticationInfos);
|
|
user.setIdentityAuthenticationInfoList(identityAuthenticationInfos);
|
|
return user;
|
|
return user;
|
|
}
|
|
}
|