正则调整

This commit is contained in:
2023-08-23 16:18:42 +08:00
parent ef0ab5eac4
commit 8d69939f39

View File

@@ -20,7 +20,7 @@ public interface PatternRegex {
/** /**
* APP密码长度为8-16 * APP密码长度为8-16
*/ */
String APP_PASSWORD_REGEX = "{8,16}$"; String APP_PASSWORD_REGEX = "^.{8,16}$";
/** /**