Browse Source

Merge remote-tracking branch 'origin/dev_thirdplatform' into dev

dev_shibei_match
zxc 5 years ago
parent
commit
75222da285
  1. 2
      epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/redis/RedisThird.java

2
epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/redis/RedisThird.java

@ -80,7 +80,7 @@ public class RedisThird {
*/ */
public void setAuthorizerRefreshToken(AuthorizationInfoFormDTO authInfoDTO){ public void setAuthorizerRefreshToken(AuthorizationInfoFormDTO authInfoDTO){
Map<String, Object> map = BeanUtil.beanToMap(authInfoDTO, false, true); Map<String, Object> map = BeanUtil.beanToMap(authInfoDTO, false, true);
String key = ThirdRedisKeyConstant.AUTHORIZER_REFRESH_TOKEN_REDIS_KEY + ThirdRedisKeyConstant.COLON + authInfoDTO.getCustomerId()+ThirdRedisKeyConstant.COLON+authInfoDTO.getClientType(); String key = ThirdRedisKeyConstant.AUTHORIZER_REFRESH_TOKEN_REDIS_KEY + authInfoDTO.getCustomerId()+ThirdRedisKeyConstant.COLON+authInfoDTO.getClientType();
redisUtils.hMSet(key, map,NOT_EXPIRE); redisUtils.hMSet(key, map,NOT_EXPIRE);
} }

Loading…
Cancel
Save