燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2024-11-18 9a86656c139eef8963bcf449a8985ef9bcb1299c
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;
            }