src/main/java/com/yssh/utils/CacheUtils.java
@@ -46,7 +46,7 @@ } public static <T> void putListByKey(String key, List<T> list) { if (null != list && list.size() > 0) { if (null != list) { put(key, list); } } @@ -63,10 +63,8 @@ BigInteger bigInt = new BigInteger(1, byteArray); // 参数16表示16进制 String result = bigInt.toString(16); // 不足32位高位补零 while (result.length() < 32) { result = "0" + result; }