feat(解读流程导入): p3,p5 -> 200

This commit is contained in:
yjz
2024-08-20 14:07:49 +08:00
parent c373fede40
commit 501d310a53
@@ -168,6 +168,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe
private final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
private final List<String> 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, "备注");