修复导入Excel时字典字段类型为Long转义为空问题

product
RuoYi 2022-03-05 08:41:19 +08:00
parent 7a09412ecb
commit 82535c82d3
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ public class ExcelUtil<T>
{
val = Convert.toInt(val);
}
else if (Long.TYPE == fieldType || Long.class == fieldType)
else if ((Long.TYPE == fieldType || Long.class == fieldType) && StringUtils.isNumeric(Convert.toStr(val)))
{
val = Convert.toLong(val);
}