From 84e7e391b49dc612a5a8664a12c4f4cb3760164e Mon Sep 17 00:00:00 2001 From: yjz <3131811435@qq.com> Date: Mon, 12 Aug 2024 17:29:42 +0800 Subject: [PATCH] =?UTF-8?q?fix(88479):=20=E6=A0=A1=E9=AA=8C=E8=BF=87?= =?UTF-8?q?=E6=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/StandardInterpretFlowServiceImpl.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java index ff8cf1d3..0c0a68fd 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java @@ -561,7 +561,10 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe new LambdaQueryWrapper() .eq(LawsTag::getTableName, "laws_document_split") .eq(LawsTag::getIsShowList, YesOrNoEnum.YES.getValue()) - .ne(LawsTag::getDbFieldName, "is_same_as_prev_version")); + .ne(LawsTag::getDbFieldName, "is_same_as_prev_version") + .ne(LawsTag::getDbFieldName, "item_num") + .ne(LawsTag::getDbFieldName, "item_content") + .ne(LawsTag::getDbFieldName, "item_title")); // 反射获取字段名称 Field[] fields = clauseSublist.getClass().getDeclaredFields(); for (Field field : fields) {