5e129d96 by xu

可信空间连接器入住接口

1 parent 59d9518c
...@@ -126,6 +126,13 @@ public class TdsConnectorIdentityManagementServiceImpl extends FlowAbstractImpl ...@@ -126,6 +126,13 @@ public class TdsConnectorIdentityManagementServiceImpl extends FlowAbstractImpl
126 throw new CsbrSystemException(SystemError.DATA_NOT_EXISTS, messageSourceUtil.notExistsToSelectMessage(String.format("获取%s详情数据", FUNCTION_NAME))); 126 throw new CsbrSystemException(SystemError.DATA_NOT_EXISTS, messageSourceUtil.notExistsToSelectMessage(String.format("获取%s详情数据", FUNCTION_NAME)));
127 } 127 }
128 TdsConnectorIdentityManagementRSVO vo = convertToVO(entity, true); 128 TdsConnectorIdentityManagementRSVO vo = convertToVO(entity, true);
129 Map<String, MfTdsConnectorIdentity> connectorIdentityMap = tdsConnectorIdentityService.getCrossTenantTdsConnectorIdentitys(CommonUtil.filterSetFiled(Arrays.asList(entity),
130 MfTdsConnectorIdentityManagement::getConnectorGuid));
131 if(ObjectUtils.isNotEmpty(connectorIdentityMap) && connectorIdentityMap.containsKey(entity.getConnectorGuid())){
132 vo.setConnectorName(connectorIdentityMap.get(vo.getConnectorGuid()).getConnectorName());
133 vo.setLegalEntity(connectorIdentityMap.get(vo.getConnectorGuid()).getLegalEntity());
134 vo.setConnectorName(connectorIdentityMap.get(vo.getConnectorGuid()).getConnectorName());
135 }
129 return vo; 136 return vo;
130 } 137 }
131 138
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!