This commit is contained in:
caozehui
2025-03-25 19:50:04 +08:00
parent 3b75cca481
commit 3d6d494990

View File

@@ -282,4 +282,10 @@ public interface PatternRegex {
String REPORT_NAME_REGEX = "^[a-zA-Z0-9\\u4e00-\\u9fa5\\-]{1,50}$"; String REPORT_NAME_REGEX = "^[a-zA-Z0-9\\u4e00-\\u9fa5\\-]{1,50}$";
String REPORT_VERSION_REGEX = "^[a-zA-Z0-9\\u4e00-\\u9fa5\\-\\.]{1,50}$"; String REPORT_VERSION_REGEX = "^[a-zA-Z0-9\\u4e00-\\u9fa5\\-\\.]{1,50}$";
String SCRIPT_NAME_REGEX = "^[a-zA-Z0-9\\u4e00-\\u9fa5\\-\\.]{1,50}$";
String ICD_NAME_REGEX = "^[a-zA-Z0-9\\u4e00-\\u9fa5\\-\\.]{1,50}$";
String ICD_PATH_REGEX = "^[A-Za-z0-9\\/\\-]+$";
} }