ffd4b80a by xiaojie

【数据资产】

企业认证修改领域和附件信息
1 parent f13afe9d
...@@ -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);
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!