101captain
2022-07-20 c40f8e3d2e08e108780091776437242528bf61d6
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BigScreenStatisticsApi.java
@@ -513,4 +513,83 @@
    public R getCourtyardBaseData(@RequestParam("communityId") Long communityId) {
        return bigScreenStatisticsService.getCourtyardBaseData(communityId);
    }
    /**
     * 孵化中心-基础数据
     * @param communityId
     * @return
     */
    @GetMapping("/hatch/base")
    public R getHatchBaseData(@RequestParam("communityId") Long communityId) {
        return bigScreenStatisticsService.getHatchBaseData(communityId);
    }
    /**
     * 孵化中心-孵化成果展示列表
     * @param pageBaseDTO
     * @return
     */
    @PostMapping("/hatchResult/list")
    public R pageHatchResult(@RequestBody PageBaseDTO pageBaseDTO) {
        return bigScreenStatisticsService.pageHatchResult(pageBaseDTO);
    }
    /**
     * 孵化中心-孵化进度展示列表
     * @param pageBaseDTO
     * @return
     */
    @PostMapping("/hatchSchedule/list")
    public R pageHatchSchedule(@RequestBody PageBaseDTO pageBaseDTO) {
        return bigScreenStatisticsService.pageHatchSchedule(pageBaseDTO);
    }
    /**
     * 五社联动基础数据
     * @param communityId
     * @return
     */
    @GetMapping("/fiveAssociations/base")
    public R getFiveAssociationsBaseData(@RequestParam("communityId") Long communityId) {
        return bigScreenStatisticsService.getFiveAssociationsBaseData(communityId);
    }
    /**
     * 五社联动项目展示列表
     * @param pageBaseDTO
     * @return
     */
    @PostMapping("/socialProject/list")
    public R pageSocialProjectList(@RequestBody PageBaseDTO pageBaseDTO) {
        return bigScreenStatisticsService.pageSocialProjectList(pageBaseDTO);
    }
    /**
     * 五社联动社会组织展示列表
     * @param pageBaseDTO
     * @return
     */
    @PostMapping("/socialOrg/list")
    public R pageSocialOrgList(@RequestBody PageBaseDTO pageBaseDTO) {
        return bigScreenStatisticsService.pageSocialOrgList(pageBaseDTO);
    }
    /**
     * 人大代表
     * @param communityId
     * @return
     */
    @GetMapping("/dpc/base")
    public R dpcBase(@RequestParam("communityId") Long communityId) {
        return bigScreenStatisticsService.dpcBase(communityId);
    }
    /**
     * 人大代表-随手拍展示列表
     * @return
     */
    @PostMapping("/dpc/easyPhotoList")
    public R dpcEasyPhotoList(@RequestBody PageBaseDTO pageBaseDTO) {
        return bigScreenStatisticsService.dpcEasyPhotoList(pageBaseDTO);
    }
}