he2802 1 vuosi sitten
vanhempi
commit
df25f4d2a4

+ 1 - 0
run-prod.sh

@@ -33,3 +33,4 @@ docker run \
 -d ${group_admin_name}/${app_admin_name}:${app_admin_version}
 echo '----start container admin----'
 
+

BIN
zhongzheng-admin/src/main/resources/config/1654168249/apiclient_cert.p12


+ 2 - 2
zhongzheng-common/src/main/java/com/zhongzheng/common/utils/ToolsUtils.java

@@ -416,8 +416,8 @@ public class ToolsUtils {
         if(Validator.isEmpty(passWord)){
             return false;
         }
-        if(passWord.length()<8||passWord.length()>16){
-            throw new CustomException("密码长度限制8到16位");
+        if(passWord.length()<6||passWord.length()>16){
+            throw new CustomException("密码长度限制6到16位");
         }
         return true;
     }