490e674d by xiaojie

【数据资产】

查询企业认证附件和领域
1 parent 63a25928
...@@ -328,15 +328,15 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro ...@@ -328,15 +328,15 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro
328 vo.setBeforeChangeList(enterpriseService.beforeChangeList(entity.getApproveGuid())); 328 vo.setBeforeChangeList(enterpriseService.beforeChangeList(entity.getApproveGuid()));
329 329
330 // 查询附件信息 330 // 查询附件信息
331 Map<String, List<EnterpriseAttachmentRSVO>> attachmentByEnterpriseGuids = enterpriseAttachmentService.getMapByEnterpriseGuids(Collections.singletonList(guid)); 331 Map<String, List<EnterpriseAttachmentRSVO>> attachmentByEnterpriseGuids = enterpriseAttachmentService.getMapByEnterpriseGuids(Collections.singletonList(entity.getSourceGuid()));
332 if (ObjectUtils.isNotEmpty(attachmentByEnterpriseGuids) && attachmentByEnterpriseGuids.containsKey(guid)) { 332 if (ObjectUtils.isNotEmpty(attachmentByEnterpriseGuids) && attachmentByEnterpriseGuids.containsKey(entity.getSourceGuid())) {
333 vo.setAttachmentRSVOS(attachmentByEnterpriseGuids.get(guid)); 333 vo.setAttachmentRSVOS(attachmentByEnterpriseGuids.get(entity.getSourceGuid()));
334 } 334 }
335 335
336 // 查询领域信息 336 // 查询领域信息
337 Map<String, List<EnterpriseDomainRSVO>> domainByEnterpriseGuids = enterpriseDomainService.getMapByEnterpriseGuids(Collections.singletonList(guid)); 337 Map<String, List<EnterpriseDomainRSVO>> domainByEnterpriseGuids = enterpriseDomainService.getMapByEnterpriseGuids(Collections.singletonList(entity.getSourceGuid()));
338 if (ObjectUtils.isNotEmpty(domainByEnterpriseGuids) && domainByEnterpriseGuids.containsKey(guid)) { 338 if (ObjectUtils.isNotEmpty(domainByEnterpriseGuids) && domainByEnterpriseGuids.containsKey(entity.getSourceGuid())) {
339 vo.setDomainRSVOS(domainByEnterpriseGuids.get(guid)); 339 vo.setDomainRSVOS(domainByEnterpriseGuids.get(entity.getSourceGuid()));
340 } 340 }
341 341
342 return vo; 342 return vo;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!