龚焕茏
2024-05-22 c25d93c39975f84ca411da16b82ab556648a50e0
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();