【数据资产】
企业认证修改领域和附件信息
Showing
2 changed files
with
2 additions
and
0 deletions
| ... | @@ -284,6 +284,7 @@ public class EnterpriseAttachmentServiceImpl implements EnterpriseAttachmentServ | ... | @@ -284,6 +284,7 @@ public class EnterpriseAttachmentServiceImpl implements EnterpriseAttachmentServ |
| 284 | if (ObjectUtils.isNotEmpty(attachmentRQVOS)) { | 284 | if (ObjectUtils.isNotEmpty(attachmentRQVOS)) { |
| 285 | List<MfEnterpriseAttachment> attachmentList = new ArrayList<>(); | 285 | List<MfEnterpriseAttachment> attachmentList = new ArrayList<>(); |
| 286 | for (EnterpriseAttachmentRQVO attachmentRQVO : attachmentRQVOS) { | 286 | for (EnterpriseAttachmentRQVO attachmentRQVO : attachmentRQVOS) { |
| 287 | attachmentRQVO.setGuid(null); | ||
| 287 | attachmentRQVO.setEnterpriseGuid(guid); | 288 | attachmentRQVO.setEnterpriseGuid(guid); |
| 288 | attachmentRQVO.setTenantGuid(tenantGuid); | 289 | attachmentRQVO.setTenantGuid(tenantGuid); |
| 289 | // 获取文件大小 | 290 | // 获取文件大小 | ... | ... |
| ... | @@ -191,6 +191,7 @@ public class EnterpriseDomainServiceImpl implements EnterpriseDomainService { | ... | @@ -191,6 +191,7 @@ public class EnterpriseDomainServiceImpl implements EnterpriseDomainService { |
| 191 | if (ObjectUtils.isNotEmpty(domainRQVOS)) { | 191 | if (ObjectUtils.isNotEmpty(domainRQVOS)) { |
| 192 | List<MfEnterpriseDomain> enterpriseDomains = new ArrayList<>(); | 192 | List<MfEnterpriseDomain> enterpriseDomains = new ArrayList<>(); |
| 193 | for (EnterpriseDomainRQVO enterpriseDomainRQVO : domainRQVOS) { | 193 | for (EnterpriseDomainRQVO enterpriseDomainRQVO : domainRQVOS) { |
| 194 | enterpriseDomainRQVO.setGuid(null); | ||
| 194 | MfEnterpriseDomain entity = convertToEntity(enterpriseDomainRQVO); | 195 | MfEnterpriseDomain entity = convertToEntity(enterpriseDomainRQVO); |
| 195 | entity.setEnterpriseGuid(guid); | 196 | entity.setEnterpriseGuid(guid); |
| 196 | mfEnterpriseDomainService.csbrAddEntity(entity); | 197 | mfEnterpriseDomainService.csbrAddEntity(entity); | ... | ... |
-
Please register or sign in to post a comment