From df1de6a8ca9bf6af14d858fb51d077c00dd2dd48 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期五, 23 七月 2021 13:08:41 +0800 Subject: [PATCH] 修改bug --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 87 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 86 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 d62eb51..9fc1350 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 @@ -1436,6 +1436,15 @@ R listSaveMngCarExcelVO(@RequestBody List<ComMngCarExcelVO> list, @RequestParam("communityId") Long communityId); /** + * 车辆导出 + * + * @param exportComMngCarExcelDTO + * @return + */ + @PostMapping("/common/data/car/export") + R exportRealCar(ExportComMngCarExcelDTO exportComMngCarExcelDTO); + + /** * 社区后台实有单位管理列表 * * @param pageComMngRealCompanyDTO @@ -1443,6 +1452,15 @@ */ @PostMapping("/common/data/company/page") R pageQueryComMngRealCompany(@RequestBody PageComMngRealCompanyDTO pageComMngRealCompanyDTO); + + /** + * 社区后台实有单位统计 + * + * @param communityId 社区id + * @return 统计结果 + */ + @PostMapping("/common/data/company/statistics") + R getComMngRealCompanyTotalByAdmin(@RequestParam("communityId") Long communityId); /** * 社区后台添加修改实有单位 @@ -1649,6 +1667,15 @@ R listVillage(ComMngVillageVO comMngVillageVO); /** + * 根据房屋id查询实有房屋 + * + * @param villageId 查询条件 + * @return 查询结果 + */ + @PostMapping("/getVillageById") + R getVillageById(@RequestParam(value = "villageId")Long villageId); + + /** * 批量导入实有房屋 * * @param list 实有房屋数据 @@ -1742,6 +1769,15 @@ */ @PostMapping("/common/data/population/getList") R getPopulationLists(@RequestBody List<Long> Ids); + + /** + * 根据小区id查询实有人口 + * + * @param villageId 小区id + * @return 查询结果 + */ + @PostMapping("/common/data/population/getListByVillageId") + R getPopulationListByVillageId(@RequestParam("villageId") Long villageId); /** * 创建调查问卷 @@ -2333,7 +2369,7 @@ * @return 详情 */ @GetMapping("/detailworkguide") - R detailWorkGuide(@RequestParam("workGuideId") Long workGuideId); + R detailWorkGuide(@RequestParam("workGuideId") Long workGuideId, @RequestParam("conmunityId") Long conmunityId); /** * 办事指南_分页 @@ -3617,4 +3653,53 @@ */ @GetMapping("/eventgrid/community/list") R getCommunityLists(); + + /** + * 分页查询退役军人列表 + * + * @param comExServicemanDTO 请求参数 + * @return 退役军人列表 + */ + @PostMapping("/population/page/exServiceman") + R pageExServiceman(@RequestBody ComExServicemanDTO comExServicemanDTO); + + /** + * 分页查询社区动态分类列表 + * @param comActDynTypeDTO 请求参数 + * @return 动态分类列表 + */ + @PostMapping("/dyn/type/page") + R pageDynTypeByAdmin(@RequestBody PageComActDynTypeDTO comActDynTypeDTO); + + /** + * 查询社区下所有动态分类列表 + * @param comActDynTypeDTO 请求参数 + * @return 动态分类列表 + */ + @PostMapping("/dyn/type/list") + R getDynTypeListByAdmin(@RequestBody PageComActDynTypeDTO comActDynTypeDTO); + + /** + * 添加社区动态分类 + * @param comActDynTypeDTO 请求参数 + * @return 添加结果 + */ + @PostMapping("/dyn/type/add") + R addDynTypeByAdmin(@RequestBody AddComActDynTypeDTO comActDynTypeDTO); + + /** + * 编辑社区动态分类 + * @param comActDynTypeDTO 请求参数 + * @return 编辑结果 + */ + @PostMapping("/dyn/type/edit") + R editDynTypeByAdmin(@RequestBody EditComActDynTypeDTO comActDynTypeDTO); + + /** + * 删除社区动态分类 + * @param ids 社区动态分类id集合 + * @return 删除结果 + */ + @PostMapping("/dyn/type/delete") + R deleteDynTypeByAdmin(@RequestBody List<Long> ids); } -- Gitblit v1.7.1