From c83cf9d2d82a0a29a15e38f4566eb470b9a3517b Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期二, 22 二月 2022 09:57:51 +0800 Subject: [PATCH] 抽奖相关提交 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java index 778fb00..e3ab226 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java @@ -2,6 +2,8 @@ import javax.annotation.Resource; +import com.panzhihua.common.model.dtos.property.CommonPage; +import com.panzhihua.service_community.service.ComActService; import com.panzhihua.common.model.dtos.PageBaseDTO; import com.panzhihua.common.model.dtos.community.convenient.PagePopularMerchantDTO; import com.panzhihua.service_community.service.BigScreenStatisticsService; @@ -22,6 +24,8 @@ @Resource private ComMngPopulationService comMngPopulationService; + @Resource + private ComActService comActService; @Resource private BigScreenService bigScreenService; @Resource @@ -87,6 +91,29 @@ return R.ok(comMngPopulationService.getScreenEventDetail(eventDetailDTO)); } + /** + * 西区大屏治理数据 + */ + @GetMapping("/getWestScreenStatics") + public R westScreenStatics(){ + return comMngPopulationService.westScreenStatics(); + } + + @GetMapping("/getComprehensivePopulationStatics") + public R getComprehensivePopulationStatics(@RequestParam("streetId") Long streetId){ + return comMngPopulationService.getComprehensivePopulationStatics(streetId); + } + + @GetMapping("/getComprehensiveStreetList") + public R getComprehensiveStreetList(){ + return comMngPopulationService.getComprehensiveStreetList(); + } + + + @GetMapping("/getCommunityPassword") + public R getCommunityPassword(@RequestParam("communityId") Long communityId){ + return comActService.getCommunityPassword(communityId); + } /** * 新版大屏首页接口 */ @@ -270,4 +297,20 @@ return bigScreenStatisticsService.getScreenPopularMerchants(pagePopularMerchantDTO); } + @PostMapping("/hmk/baseInfo") + public R getHmkBaseInfo(@RequestBody CommonPage commonPage){ + return bigScreenStatisticsService.hmkBaseInfo(commonPage); + } + @GetMapping("/hmk/partyProjectActivityLine") + public R partyActivityLine(){ + return bigScreenStatisticsService.partyProjectActivityLine(); + } + @PostMapping("/hmk/projectActivityTop") + public R projectActivityTop(@RequestBody CommonPage commonPage){ + return bigScreenStatisticsService.projectActivityProject(commonPage); + } + @GetMapping("/hmk/projectType") + public R projectType(@RequestParam("name") String name){ + return bigScreenStatisticsService.projectType(name); + } } -- Gitblit v1.7.1