From b1383ab03a6df5c065e71f659635ba0efb654ff7 Mon Sep 17 00:00:00 2001 From: yjz <3131811435@qq.com> Date: Mon, 25 Mar 2024 11:21:14 +0800 Subject: [PATCH] =?UTF-8?q?fix(82943):=20=E5=B7=A6=E4=BE=A7=E7=9B=AE?= =?UTF-8?q?=E5=BD=95=E6=A0=91=E6=96=B0=E5=BB=BA=E4=B8=80=E4=B8=AA=E6=9D=A1?= =?UTF-8?q?=E7=BA=B9=E5=90=8E=EF=BC=8C=E5=8F=B3=E4=BE=A7=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=A2=9E=E5=8A=A0=E4=B8=80=E8=A1=8C=EF=BC=8C?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E8=BF=99=E8=A1=8C=E6=95=B0=E6=8D=AE=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E6=97=B6=E6=8F=90=E7=A4=BA=E6=95=B0=E6=8D=AE=E5=BA=93?= =?UTF-8?q?=E4=B8=AD=E5=B7=B2=E5=AD=98=E5=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../documenttool/service/impl/DocumentSplitServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/laws-modules/src/main/java/com/jero/modules/laws/documenttool/service/impl/DocumentSplitServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/laws/documenttool/service/impl/DocumentSplitServiceImpl.java index 8492d333..d99c9bc9 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/documenttool/service/impl/DocumentSplitServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/documenttool/service/impl/DocumentSplitServiceImpl.java @@ -547,10 +547,11 @@ public class DocumentSplitServiceImpl implements IDocumentSplitService { // 条目信息 List valList = JSON.parseArray(JSON.toJSONString(parameter.get("itemValEOList")), SarFileSplitItemsValEO.class); parameter.remove("itemValEOList"); + parameter.putIfAbsent(ITEM_CONTENT, ""); // 条文解读 List articlesList = JSON.parseArray(JSON.toJSONString(parameter.get(INTERPRETATION_ARTICLES_LIST)), SarFileSplitItemsValEO.class); parameter.remove(INTERPRETATION_ARTICLES_LIST); - + parameter.putIfAbsent(INTERPRETATION_ARTICLES, ""); parameter.forEach((k, v) ->{ // 条文内容拼接 if (ITEM_CONTENT.equals(k)){