xiangpei
2024-05-15 09135e31580c89fa86ba760904dca6d88f98c040
src/main/java/com/mindskip/xzs/utility/excel/ExcelUtils.java
@@ -875,6 +875,12 @@
            cell.setCellValue("");
            return CELL_OTHER;
        }
        // 数据为""时
        if ("".equals(o)) {
            cell.setCellType(CellType.STRING);
            cell.setCellValue("");
            return CELL_OTHER;
        }
        // 是否为字符串
        if (o instanceof String) {
            String s = o.toString();