From 34b537c6834d099a76ed0a9164809eed05022b04 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期三, 30 六月 2021 16:57:45 +0800 Subject: [PATCH] 综治app-小区模块接口开发 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVillageService.java | 18 ++++++++++++++++++ 1 files changed, 18 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 2694f0f..58d0263 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,9 @@ 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.vos.R; import com.panzhihua.common.model.vos.community.ComMngVillageServeExcelVO; import com.panzhihua.common.model.vos.community.ComMngVillageVO; @@ -69,4 +72,19 @@ * @return 小区详情 */ R getVillage(Long villageId); + + /** + * 小区列表 + * @param villageListAppDTO 请求参数 + * @return 小区列表 + */ + R getGridVillageList(ComMngVillageListAppDTO villageListAppDTO); + + /** + * 小区下楼栋列表 + * @param villageId 小区id + * @return 小区下楼栋列表 + */ + R getGridVillageBuildingList(Long villageId); + } -- Gitblit v1.7.1