修复BUG: 导出Excel功能, 当attr的cellType为String时, cell的cellType由Numeric修正为String。

This commit is contained in:
mazh 2020-08-05 11:28:57 +08:00
parent b56898858d
commit a9695d1756
1 changed files with 1 additions and 1 deletions

View File

@ -476,7 +476,7 @@ public class ExcelUtil<T>
{ {
if (ColumnType.STRING == attr.cellType()) if (ColumnType.STRING == attr.cellType())
{ {
cell.setCellType(CellType.NUMERIC); cell.setCellType(CellType.STRING);
cell.setCellValue(StringUtils.isNull(value) ? attr.defaultValue() : value + attr.suffix()); cell.setCellValue(StringUtils.isNull(value) ? attr.defaultValue() : value + attr.suffix());
} }
else if (ColumnType.NUMERIC == attr.cellType()) else if (ColumnType.NUMERIC == attr.cellType())