|
@@ -272,6 +272,109 @@ public class VisualController {
|
|
|
public List<ColumnPageView> selectColumnPageViewList() {
|
|
|
return columnPageViewService.selectColumnPageViewList();
|
|
|
}
|
|
|
+ /**
|
|
|
+ * 每日最受欢迎信息排名
|
|
|
+ */
|
|
|
+ @GetMapping("/listPopularInformation")
|
|
|
+ public List<PopularInformation> selectPopularInformationList() {
|
|
|
+ return popularInformationService.selectPopularInformationList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 市政府门户网站错别字监测-市政府工作部门
|
|
|
+ */
|
|
|
+ @GetMapping("/listMunicipalMisprint")
|
|
|
+ public List<MunicipalMisprint> selectMunicipalMisprintList() {
|
|
|
+ return municipalMisprintService.selectMunicipalMisprintList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 市政府门户网站错别字监测-县(市)区政府
|
|
|
+ */
|
|
|
+ @GetMapping("/listCountyAndDistrictMisprint")
|
|
|
+ public List<CountyAndDistrictMisprint> selectCountyAndDistrictMisprintList() {
|
|
|
+ return countyAndDistrictMisprintService.selectCountyAndDistrictMisprintList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 市政府门户网站错误链接监测
|
|
|
+ */
|
|
|
+ @GetMapping("/listMunicipalErrorLinkMonitor")
|
|
|
+ public List<MunicipalErrorLinkMonitor> selectMunicipalErrorLinkMonitorList() {
|
|
|
+ return municipalErrorLinkMonitorService.selectMunicipalErrorLinkMonitorList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 网站普查要素
|
|
|
+ */
|
|
|
+ @GetMapping("/listCensusElements")
|
|
|
+ public List<CensusElements> selectCensusElementsList() {
|
|
|
+ return censusElementsService.selectCensusElementsList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 网站普查单项否信息
|
|
|
+ */
|
|
|
+ @GetMapping("/listCensusItemNegativeInformation")
|
|
|
+ public List<CensusItemNegativeInformation> selectCensusItemNegativeInformationList() {
|
|
|
+ return censusItemNegativeInformationService.selectCensusItemNegativeInformationList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 市直部门日访问量排名
|
|
|
+ */
|
|
|
+ @GetMapping("/listDailyTrafficRanking")
|
|
|
+ public List<DailyTrafficRanking> selectDailyTrafficRankingList() {
|
|
|
+ return dailyTrafficRankingService.selectDailyTrafficRankingList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 市直部门日更新量排名
|
|
|
+ */
|
|
|
+ @GetMapping("/listDailyUpdateRanking")
|
|
|
+ public List<DailyUpdateRanking> selectDailyUpdateRankingList() {
|
|
|
+ return dailyUpdateRankingService.selectDailyUpdateRankingList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 县(市)区政府日访问量排名
|
|
|
+ */
|
|
|
+ @GetMapping("/listCountyDailyTrafficRanking")
|
|
|
+ public List<CountyDailyTrafficRanking> selectCountyDailyTrafficRankingList() {
|
|
|
+ return countyDailyTrafficRankingService.selectCountyDailyTrafficRankingList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 县(市)区政府日更新量排名
|
|
|
+ */
|
|
|
+ @GetMapping("/listCountyDailyUpdateRanking")
|
|
|
+ public List<CountyDailyUpdateRanking> selectCountyDailyUpdateRankingList() {
|
|
|
+ return countyDailyUpdateRankingService.selectCountyDailyUpdateRankingList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 市政府网站群互动类栏目更新情况-市直部门
|
|
|
+ */
|
|
|
+ @GetMapping("/listMunicipalInteractiveColumns")
|
|
|
+ public List<MunicipalInteractiveColumns> selectMunicipalInteractiveColumnsList() {
|
|
|
+ return municipalInteractiveColumnsService.selectMunicipalInteractiveColumnsList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 市政府网站群互动类栏目更新情况-区、开发区
|
|
|
+ */
|
|
|
+ @GetMapping("/listAreaInteractiveColumns")
|
|
|
+ public List<AreaInteractiveColumns> selectAreaInteractiveColumnsList() {
|
|
|
+ return areaInteractiveColumnsService.selectAreaInteractiveColumnsList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 市政府网站群互动类栏目更新情况告警展示-县(市)
|
|
|
+ */
|
|
|
+ @GetMapping("/listCountyInteractiveColumns")
|
|
|
+ public List<CountyInteractiveColumns> selectCountyInteractiveColumnsList() {
|
|
|
+ return countyInteractiveColumnsService.selectCountyInteractiveColumnsList();
|
|
|
+ }
|
|
|
|
|
|
|
|
|
}
|