|
|
@@ -15,6 +15,7 @@ import com.railway.common.core.controller.BaseController;
|
|
|
import com.railway.common.core.domain.AjaxResult;
|
|
|
import com.railway.common.core.page.TableDataInfo;
|
|
|
import javax.validation.Valid;
|
|
|
+import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
@@ -91,7 +92,7 @@ public class BusSdtzController extends BaseController {
|
|
|
if(list!=null&&list.size()==1){
|
|
|
busSmartQueryVo.setMarker(list.get(0).getMarker());
|
|
|
}else{
|
|
|
- return null;
|
|
|
+ return getDataTable(new ArrayList<>());
|
|
|
}
|
|
|
}
|
|
|
if(busSmartQueryVo.getPillarArea()==null||busSmartQueryVo.getPillarArea().equals("")){
|