|
@@ -261,7 +261,7 @@ public class TableServiceCmdService {
|
|
|
rows.put(FormDataConstant.PAGE_TOTAL, total);
|
|
|
rows.put(TABLE_HEAD_LIST, getTableHeadList(genTable));
|
|
|
if (total <= 0) {
|
|
|
- rows.put(FormDataConstant.PAGE_ROWS, null);
|
|
|
+ rows.put(FormDataConstant.PAGE_ROWS, new ArrayList<>());
|
|
|
return AjaxResult.success(rows);
|
|
|
}
|
|
|
|