diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/cert/collect/service/impl/ParamsCollectManifestEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/cert/collect/service/impl/ParamsCollectManifestEOServiceImpl.java index 923a209a6..bc43e2ea1 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/cert/collect/service/impl/ParamsCollectManifestEOServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/cert/collect/service/impl/ParamsCollectManifestEOServiceImpl.java @@ -5940,14 +5940,14 @@ public class ParamsCollectManifestEOServiceImpl extends ServiceImpl resultMap = new HashMap<>(); // 校验必填 - if (IsMustEnum.YES.getValue().equals(mustInput) && StringUtils.isEmpty(value)) { + /*if (IsMustEnum.YES.getValue().equals(mustInput) && StringUtils.isEmpty(value)) { if (CutEnum.CN.getValue().equals(cut)) { errorMsg += configName + "为必填项,不能为空;"; } else { errorMsg += configName + " is mandatory and cannot be empty; "; } countError++; - } + }*/ String fileName = value; if (StringUtils.isNotBlank(fileName)) { @@ -5984,14 +5984,14 @@ public class ParamsCollectManifestEOServiceImpl extends ServiceImpl resultMap = new HashMap<>(); // 校验必填 - if (IsMustEnum.YES.getValue().equals(mustInput) && StringUtils.isEmpty(value)) { + /*if (IsMustEnum.YES.getValue().equals(mustInput) && StringUtils.isEmpty(value)) { if (CutEnum.CN.getValue().equals(cut)) { errorMsg += configName + "为必填项,不能为空;"; } else { errorMsg += configName + " is mandatory and cannot be empty; "; } countError++; - } + }*/ // 校验长度 if (StringUtils.isNotBlank(value) && value.length() > Long.parseLong(dbLength)) {