From 9e5951648562096633de924e5401f433a8bbb546 Mon Sep 17 00:00:00 2001 From: wangzhijiang <1358525938@qq.com> Date: Fri, 8 Mar 2024 16:27:13 +0800 Subject: [PATCH] =?UTF-8?q?82308-=E6=96=87=E6=A1=A3=E6=8B=86=E5=88=86-?= =?UTF-8?q?=E5=A4=8D=E5=88=B6=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/DocumentSplitServiceImpl.java | 9 +++++++++ 1 file changed, 9 insertions(+) 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