From a9e3948c9b9af14a373dacb1cb7babdbe9fd0b07 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期五, 16 七月 2021 14:20:47 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/test' into test --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java index 4fafe96..cf5f92d 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java @@ -1,6 +1,10 @@ package com.panzhihua.service_community.service; import com.panzhihua.common.model.dtos.community.PageComMngVillageDTO; +import com.panzhihua.common.model.dtos.grid.ComMngVillageListAppDTO; +import com.panzhihua.common.model.dtos.grid.PageComMngVillageBuildHouseAppDTO; +import com.panzhihua.common.model.dtos.grid.admin.ComMngPopulationListDTO; +import com.panzhihua.common.model.dtos.grid.admin.ComMngVillageListExportAdminDTO; import com.panzhihua.common.model.vos.R; import com.panzhihua.common.model.vos.community.ComMngVillageServeExcelVO; import com.panzhihua.common.model.vos.community.ComMngVillageVO; @@ -55,4 +59,39 @@ * @return */ R editVillage(Long villageId, ComMngVillageVO comMngVillageVO); + + /** + * 统计社区内小区数量 + * @param communityId 社区id + * @return 统计小区数量 + */ + R villageStatistics(Long communityId); + + /** + * 小区详情 + * @param villageId 小区id + * @return 小区详情 + */ + R getVillage(Long villageId); + + /** + * 小区列表 + * @param villageListAppDTO 请求参数 + * @return 小区列表 + */ + R getGridVillageList(ComMngVillageListAppDTO villageListAppDTO); + + /** + * 小区下楼栋列表 + * @param villageId 小区id + * @return 小区下楼栋列表 + */ + R getGridVillageBuildingList(Long villageId); + + R delGridVillage(List<Long> villageIds); + + R getGridVillageStatistics(); + + R getGridVillageListExport(ComMngVillageListExportAdminDTO villageListAppDTO); + } -- Gitblit v1.7.1