diff --git a/byd-structuredplugins-serve/laws-modules/src/main/java/com/jero/modules/documenttool/service/impl/DocumentSplitServiceImpl.java b/byd-structuredplugins-serve/laws-modules/src/main/java/com/jero/modules/documenttool/service/impl/DocumentSplitServiceImpl.java index e4dd2f6..1b220a3 100644 --- a/byd-structuredplugins-serve/laws-modules/src/main/java/com/jero/modules/documenttool/service/impl/DocumentSplitServiceImpl.java +++ b/byd-structuredplugins-serve/laws-modules/src/main/java/com/jero/modules/documenttool/service/impl/DocumentSplitServiceImpl.java @@ -796,6 +796,15 @@ public class DocumentSplitServiceImpl implements IDocumentSplitService { // 字段名和值 manageData(resultMap, fieldsBuilder, valuesList); documentSplitMapper.insertLawsDocumentSplit(fieldsBuilder.toString(), valuesList); + + List sarFileSplitItemsValEOS = this.queryItemsValList(id); + for (SarFileSplitItemsValEO sarFileSplitItemsValEO : sarFileSplitItemsValEOS) { + sarFileSplitItemsValEO.setId(UUID.randomUUID().toString().replace("-", "")); + sarFileSplitItemsValEO.setItemId(newItemValId); + sarFileSplitItemsValEO.setCreationTime(new Date()); + } + this.documentSplitMapper.addBatchItemsVal(sarFileSplitItemsValEOS); + } @Override