可信空间连接器入住接口
Showing
1 changed file
with
7 additions
and
0 deletions
| ... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment