From d8aed378ff37ea365880d24e72672c45f66d8153 Mon Sep 17 00:00:00 2001 From: wangzhijiang <1358525938@qq.com> Date: Mon, 11 Mar 2024 17:49:32 +0800 Subject: [PATCH] =?UTF-8?q?82627-bug=E4=BF=AE=E6=94=B9.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../split/service/impl/FileSplitItemsEOServiceImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/byd-structuredplugins-serve/laws-modules/src/main/java/com/jero/modules/split/service/impl/FileSplitItemsEOServiceImpl.java b/byd-structuredplugins-serve/laws-modules/src/main/java/com/jero/modules/split/service/impl/FileSplitItemsEOServiceImpl.java index e34e3c2..5008c8b 100644 --- a/byd-structuredplugins-serve/laws-modules/src/main/java/com/jero/modules/split/service/impl/FileSplitItemsEOServiceImpl.java +++ b/byd-structuredplugins-serve/laws-modules/src/main/java/com/jero/modules/split/service/impl/FileSplitItemsEOServiceImpl.java @@ -1996,20 +1996,20 @@ public class FileSplitItemsEOServiceImpl extends ServiceImpl 10) { - errorMsg += "条文号" + "不能超过" + "10" + "个字符;"; + errorMsg += "条款号" + "不能超过" + "10" + "个字符;"; countError++; } } if (StringUtils.equals(key,"item_title")) { //判断长度 if (StringUtils.isNotBlank(value) && value.length() > 100) { - errorMsg += "条文标题" + "不能超过" + "100" + "个字符;"; + errorMsg += "条款标题" + "不能超过" + "100" + "个字符;"; countError++; } }