| | |
| | | } |
| | | |
| | | String token = IdUtil.simpleUUID(); |
| | | redisUtils.set(token, JSONObject.toJSONString(dappMemberEntity), 3600); |
| | | redisUtils.set(redisKey, token, 3600); |
| | | redisUtils.set(token, JSONObject.toJSONString(dappMemberEntity)); |
| | | redisUtils.set(redisKey, token); |
| | | Map<String, Object> authInfo = new HashMap<>(); |
| | | authInfo.put("token", token); |
| | | authInfo.put("rasToken", generateAsaToken(token)); |
| | |
| | | List<DataDictionaryCustom> dataDictionaryCustoms = dataDictionaryCustomMapper.selectDicByType(DataDictionaryEnum.LEVEL_AIB.getType()); |
| | | if(CollUtil.isNotEmpty(dataDictionaryCustoms)){ |
| | | for(DataDictionaryCustom dic :dataDictionaryCustoms){ |
| | | if(DataDictionaryEnum.LEVEL_TM.getCode() != dic.getCode()){ |
| | | if(!DataDictionaryEnum.LEVEL_TM.getCode().equals(dic.getCode())){ |
| | | AdminMemberIdentityVo adminMemberIdentityVo = new AdminMemberIdentityVo(); |
| | | adminMemberIdentityVo.setIdentityCode(dic.getCode()); |
| | | adminMemberIdentityVo.setIdentityValue(dic.getDescription()); |