weimingfei
2025-12-11 3c5e5ed692e2e5248080b064b7d14b8eb9988a8c
server/system_service/src/main/java/com/doumee/core/utils/PasswordGenerator.java
@@ -25,7 +25,7 @@
    public static void getPasswordTypeCount(String password){
        Set<Integer> typeCount = new HashSet<>(4);
        for (int i = 0; i < password.length(); i++) {
            String key = password.substring(0,i);
            String key = password.substring(i,i+1);
            if(LOWER.indexOf(key)>=Constants.ZERO){
                typeCount.add(Constants.ZERO);
            }else if(UPPER.indexOf(key)>=Constants.ZERO){