From 501d310a53a41d057c76a9efeed721a5f1b8c565 Mon Sep 17 00:00:00 2001 From: yjz <3131811435@qq.com> Date: Tue, 20 Aug 2024 14:07:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=A7=A3=E8=AF=BB=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E5=AF=BC=E5=85=A5):=20p3,p5=20->=20200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/StandardInterpretFlowServiceImpl.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 fac4072a..b5b8eae0 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 @@ -168,6 +168,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe private final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); private final List tempList = new ArrayList<>(); private final int TEXT_LENGTH = 50; + private final int TEXT_LENGTH_2 = 200; private final int TEXT_DICT_LENGTH = 500; private final int TEXT_AREA_LENGTH = 2000; @@ -1098,10 +1099,10 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe textLenghtCheck(otherDocumentsTemplates, TEXT_LENGTH, errorList, "其他文件或模板"); String p3 = data.getP3(); - textLenghtCheck(p3, TEXT_LENGTH, errorList, "P3证明符合性的交付物名称"); + textLenghtCheck(p3, TEXT_LENGTH_2, errorList, "P3证明符合性的交付物名称"); String p5 = data.getP5(); - textLenghtCheck(p5, TEXT_LENGTH, errorList, "P5证明符合性的交付物名称"); + textLenghtCheck(p5, TEXT_LENGTH_2, errorList, "P5证明符合性的交付物名称"); String remarks = data.getRemarks(); textLenghtCheck(remarks, TEXT_AREA_LENGTH, errorList, "备注");