xiangpei
2024-05-15 fe29db7a08e9da70ca3c78db27a11e48fa5f6f43
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();