java110
2021-05-15 811e8e7139ad6e331c2f84bcd5cf3f927a8b3312
service-common/src/main/java/com/java110/common/thread/UpdateApplicationKeyPwd.java
old mode 100644 new mode 100755
@@ -106,8 +106,9 @@
            responseEntity = new ResponseEntity<String>(e.getMessage(), HttpStatus.INTERNAL_SERVER_ERROR);
        } finally {
            logger.debug("请求地址为,{} 请求中心服务信息,{},中心服务返回信息,{}", url, httpEntity, responseEntity);
            return responseEntity;
        }
        return responseEntity;
    }
    /**
@@ -119,7 +120,7 @@
        Random random = new Random();
        String result = "";
        for (int i = 0; i < 6; i++) {
            result += random.nextInt(10);
            result += (random.nextInt(9) + 1);;
        }
        return result;
    }