|
@@ -306,7 +306,7 @@ public class CommonUserServiceImpl extends ServiceImpl<CommonUserMapper, CommonU
|
|
//放入SESSION专用Redis数据源中
|
|
//放入SESSION专用Redis数据源中
|
|
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",user.getPhone())
|
|
.eq("delete_flag","0").eq("authentication_status","7"));
|
|
.eq("delete_flag","0").eq("authentication_status","7"));
|
|
user.setIdentityAuthenticationInfoList(identityAuthenticationInfos);
|
|
user.setIdentityAuthenticationInfoList(identityAuthenticationInfos);
|
|
return user;
|
|
return user;
|