|
|
@@ -13,6 +13,7 @@ import common.data.Row;
|
|
|
import common.data.Rows;
|
|
|
import common.data.RowsMap;
|
|
|
import common.data.SQLFactory;
|
|
|
+import org.apache.commons.lang.StringUtils;
|
|
|
import restcontroller.R;
|
|
|
|
|
|
import javax.naming.InsufficientResourcesException;
|
|
|
@@ -555,7 +556,7 @@ public class databoard extends Controller {
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- list.sort(Comparator.comparingLong(o -> Long.parseLong(o.getMonth())));
|
|
|
+ list.sort(Comparator.comparingLong(o -> Long.parseLong(StringUtils.isBlank(o.getMonth())?"9999":o.getMonth())));
|
|
|
return getSucReturnObject().setData(list).toString();
|
|
|
}
|
|
|
|