|
|
@@ -7,6 +7,7 @@ import com.railway.common.core.domain.AjaxResult;
|
|
|
import com.railway.common.core.page.TableDataInfo;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import java.util.ArrayList;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
@@ -67,7 +68,8 @@ public class BusFjxgmdController extends BaseController {
|
|
|
@GetMapping("/getListByZz")
|
|
|
public TableDataInfo getListByZz(BusFjxgmd busFjxgmd) {
|
|
|
startPage();
|
|
|
- List<BusFjxgmd> list = busFjxgmdService.getListByZz(busFjxgmd);
|
|
|
+ // List<BusFjxgmd> list = busFjxgmdService.getListByZz(busFjxgmd);
|
|
|
+ List<BusFjxgmd> list = new ArrayList<>();
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|