|
@@ -54,13 +54,22 @@ public class IndustryOverviewController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('industry_oveview:industry_oveview:list')")
|
|
|
@GetMapping("/i_list")
|
|
|
- public TableDataInfo i_list()
|
|
|
+ public TableDataInfo iList()
|
|
|
{
|
|
|
startPage();
|
|
|
List<IndustryCount> list = industryOverviewService.selectIndustryCountList();
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('industry_oveview:industry_oveview:list')")
|
|
|
+ @GetMapping("/i_all_list")
|
|
|
+ public TableDataInfo iAllList()
|
|
|
+ {
|
|
|
+ //startPage();
|
|
|
+ List<IndustryCount> list = industryOverviewService.countAllIndustries();
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 导出industry_oveview列表
|
|
|
*/
|