修改Excel设置STRING单元格类型

pull/15/head
RuoYi 4 years ago
parent 97ebab0c67
commit 7d94113d24

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

Loading…
Cancel
Save