【数据资产】
企业认证修改领域和附件信息
Showing
1 changed file
with
6 additions
and
6 deletions
| ... | @@ -404,15 +404,15 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro | ... | @@ -404,15 +404,15 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro |
| 404 | vo.setBeforeChangeList(enterpriseService.beforeChangeList(entity.getApproveGuid())); | 404 | vo.setBeforeChangeList(enterpriseService.beforeChangeList(entity.getApproveGuid())); |
| 405 | 405 | ||
| 406 | // 查询附件信息 | 406 | // 查询附件信息 |
| 407 | Map<String, List<EnterpriseAttachmentRSVO>> attachmentByEnterpriseGuids = enterpriseAttachmentService.getMapByEnterpriseGuids(Collections.singletonList(entity.getSourceGuid())); | 407 | Map<String, List<EnterpriseAttachmentRSVO>> attachmentByEnterpriseGuids = enterpriseAttachmentService.getMapByEnterpriseGuids(Collections.singletonList(entity.getGuid())); |
| 408 | if (ObjectUtils.isNotEmpty(attachmentByEnterpriseGuids) && attachmentByEnterpriseGuids.containsKey(entity.getSourceGuid())) { | 408 | if (ObjectUtils.isNotEmpty(attachmentByEnterpriseGuids) && attachmentByEnterpriseGuids.containsKey(entity.getGuid())) { |
| 409 | vo.setAttachmentRSVOS(attachmentByEnterpriseGuids.get(entity.getSourceGuid())); | 409 | vo.setAttachmentRSVOS(attachmentByEnterpriseGuids.get(entity.getGuid())); |
| 410 | } | 410 | } |
| 411 | 411 | ||
| 412 | // 查询领域信息 | 412 | // 查询领域信息 |
| 413 | Map<String, List<EnterpriseDomainRSVO>> domainByEnterpriseGuids = enterpriseDomainService.getMapByEnterpriseGuids(Collections.singletonList(entity.getSourceGuid())); | 413 | Map<String, List<EnterpriseDomainRSVO>> domainByEnterpriseGuids = enterpriseDomainService.getMapByEnterpriseGuids(Collections.singletonList(entity.getGuid())); |
| 414 | if (ObjectUtils.isNotEmpty(domainByEnterpriseGuids) && domainByEnterpriseGuids.containsKey(entity.getSourceGuid())) { | 414 | if (ObjectUtils.isNotEmpty(domainByEnterpriseGuids) && domainByEnterpriseGuids.containsKey(entity.getGuid())) { |
| 415 | vo.setDomainRSVOS(domainByEnterpriseGuids.get(entity.getSourceGuid())); | 415 | vo.setDomainRSVOS(domainByEnterpriseGuids.get(entity.getGuid())); |
| 416 | } | 416 | } |
| 417 | 417 | ||
| 418 | return vo; | 418 | return vo; | ... | ... |
-
Please register or sign in to post a comment