|
@@ -1,9 +1,11 @@
|
|
|
package com.railway.business.bi.controller;
|
|
package com.railway.business.bi.controller;
|
|
|
|
|
|
|
|
|
|
+import com.railway.business.bi.domain.ShowSbxj;
|
|
|
import com.railway.business.bi.domain.vo.SbxjVO;
|
|
import com.railway.business.bi.domain.vo.SbxjVO;
|
|
|
import com.railway.business.bi.service.IShowSbxjService;
|
|
import com.railway.business.bi.service.IShowSbxjService;
|
|
|
import com.railway.common.core.controller.BaseController;
|
|
import com.railway.common.core.controller.BaseController;
|
|
|
import com.railway.common.core.domain.AjaxResult;
|
|
import com.railway.common.core.domain.AjaxResult;
|
|
|
|
|
+import com.railway.common.core.page.TableDataInfo;
|
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
@@ -35,4 +37,12 @@ public class ShowSbxjController extends BaseController {
|
|
|
return AjaxResult.success(list);
|
|
return AjaxResult.success(list);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @ApiOperation(value = "导入数据展示列表")
|
|
|
|
|
+ @GetMapping(value = "list")
|
|
|
|
|
+ public TableDataInfo getList(ShowSbxj showSbxj) {
|
|
|
|
|
+ startPage();
|
|
|
|
|
+ List<ShowSbxj> list = showSbxjService.getList(showSbxj);
|
|
|
|
|
+ return getDataTable(list);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|