From 4624781d3d2a0c8cea3847e534c5aad428176bf1 Mon Sep 17 00:00:00 2001 From: luoxinwu <934743099@qq.com> Date: 星期五, 29 十二月 2023 13:48:44 +0800 Subject: [PATCH] 党组织下拉框 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 36 +++++++++++++++++++++++++++++++++++- 1 files changed, 35 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java index 2afed60..f35e876 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java @@ -6,6 +6,7 @@ import com.panzhihua.common.model.dtos.PageBaseDTO; import com.panzhihua.common.model.dtos.community.*; import com.panzhihua.common.model.dtos.community.acid.*; +import com.panzhihua.common.model.dtos.community.building.BuildingDto; import com.panzhihua.common.model.dtos.community.convenient.*; import com.panzhihua.common.model.dtos.community.dpc.AddDpcDTO; import com.panzhihua.common.model.dtos.community.dpc.EditDpcDTO; @@ -39,7 +40,6 @@ import com.panzhihua.common.model.vos.community.reserve.ComActReserveDangerAreaVO; import com.panzhihua.common.model.vos.shop.AddShopFlowerGoodsVO; import com.panzhihua.common.utlis.StringUtils; -import com.panzhihua.service_community.entity.VolunteerCommunityConfigVO; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.springframework.cloud.openfeign.FeignClient; @@ -256,6 +256,7 @@ import org.springframework.web.multipart.MultipartFile; import javax.annotation.Resource; +import javax.servlet.http.HttpServletResponse; /** * @program: springcloud_k8s_panzhihuazhihuishequ @@ -5047,6 +5048,8 @@ @GetMapping("/neighbor/getNeighborTopicByApp") R getNeighborTopicByApp(@RequestParam("name") String name); + @GetMapping("/neighbor/getNeighborTopicByAppNew") + R getNeighborTopicByAppNew(@RequestParam("name") String name); /** * 删除话题 * @param id @@ -9957,6 +9960,10 @@ @RequestParam(value = "size",required = false) Integer size, @RequestParam(value = "belongTo",required = false) String belongTo, @RequestParam(value = "unitId",required = false) Long unitId,@RequestParam(value = "loginAccount",required = false) String loginAccount); + + @GetMapping("/neighbor/export") + public R export(@RequestParam("year") Integer year, @RequestParam("belongTo") String belongTo, @RequestParam("communityId") Long communityId, HttpServletResponse response); + /** * 批量删除活动 * @param ids @@ -11846,4 +11853,31 @@ + + @GetMapping("/integral/user/getIntegralUserRank") + public R getIntegralUserRank(@RequestParam("communityId") Long communityId, + @RequestParam("userId") Long userId); + + + @GetMapping("/largeScreen/panzhihuaMap") + public R panzhihuaMap(@RequestParam("areaCode")String areaCode); + + @GetMapping("/largeScreen/oneTagThreeReal") + public R oneTagThreeReal(@RequestParam("streetId") Long streetId); + + @PostMapping("/largeScreen/searchStreet") + public R searchStreet(@RequestBody BuildingDto buildingDto); + + @PostMapping("/largeScreen/huachengDyn") + public R huachengDyn(@RequestBody ComActDynVO comActDynVO); + + @GetMapping("/largeScreen/getScreenStatics") + public R getScreenStatics(); + + @GetMapping("/largeScreen/populationStatics") + public R populationStatics(@RequestParam("streetId") Long streetId); + + @GetMapping("/largeScreen/probably") + public R probably(@RequestParam("year") Integer year,@RequestParam("belongTo") String belongTo); + } -- Gitblit v1.7.1