From 2c8b9868fe8c45320eb18fd5d6b51ec770c30610 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期六, 24 七月 2021 11:43:57 +0800 Subject: [PATCH] 注释用户实名认证请求公安接口 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 46 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..e18060f 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,13 @@ */ @GetMapping("/eventgrid/community/list") R getCommunityLists(); + + /** + * 分页查询退役军人列表 + * + * @param comExServicemanDTO 请求参数 + * @return 退役军人列表 + */ + @PostMapping("/population/page/exServiceman") + R pageExServiceman(@RequestBody ComExServicemanDTO comExServicemanDTO); } -- Gitblit v1.7.1