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