设置默认排序顺序

This commit is contained in:
RuoYi
2020-08-19 17:05:09 +08:00
parent 346670b197
commit 895c290cbf
2 changed files with 3 additions and 3 deletions

View File

@ -923,7 +923,7 @@ public class ExcelUtil<T>
{
if ((Double) val % 1 > 0)
{
val = new DecimalFormat("0.00").format(val);
val = new BigDecimal(val.toString());
}
else
{