mirror of https://gitee.com/y_project/RuoYi.git
时间字符串处理
parent
b05a539970
commit
868edbc88c
|
@ -224,7 +224,15 @@ public class ExcelUtil<T>
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
val = Convert.toStr(val);
|
String dateFormat = field.getAnnotation(Excel.class).dateFormat();
|
||||||
|
if(StringUtils.isNotEmpty(dateFormat))
|
||||||
|
{
|
||||||
|
val=DateUtils.parseDateToStr(dateFormat,(Date) val);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
val = Convert.toStr(val);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ((Integer.TYPE == fieldType) || (Integer.class == fieldType))
|
else if ((Integer.TYPE == fieldType) || (Integer.class == fieldType))
|
||||||
|
|
Loading…
Reference in New Issue