From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期二, 20 五月 2025 23:48:08 +0800 Subject: [PATCH] 修改文件上传类型限制 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java | 46 ++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 44 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java index 026ccbf..5c68b0b 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java @@ -74,6 +74,15 @@ R pagePopulation(ComMngPopulationDTO comMngPopulationVO); /** + * 老人导出 + * + * @param comMngPopulationVO + * 查询参数 + * @return 分页集合 + */ + R exportOld(ComMngPopulationDTO comMngPopulationVO); + + /** * 查询平台所有的实有人口 * * @return 实有人口集合 按照创建顺序倒序排列 @@ -249,11 +258,11 @@ /** * 批量删除实有人口 * - * @param Ids + * @param ids * 实有人口id集合 * @return 删除结果 */ - R deletePopulations(List<Long> Ids); + R deletePopulations(List<Long> ids, Long communityId); /** * 根据社区id查询所有实有人口 @@ -514,4 +523,37 @@ R relationVillage(String name); R getVillagePopulationAdmin(PageComMngVillagePopulationDTO villagePopulationDTO); + + /** + * 导出特殊人群 + * @param PageInputUserDTO + * @return + */ + R specialInputUserExport(PageInputUserDTO PageInputUserDTO); + + /** + * 西区大屏治理数据 + * @return + */ + R westScreenStatics(); + + R getComprehensivePopulationStatics(Long streetId); + + R getComprehensiveStreetList(); + + /** + * 新版大屏首页 + * @param communityId + * @return + */ + R indexInfo(Long communityId); + + /** + * 历史数据人员类型填充 + * @param newVoList + * @param communityId + * @param userId + * @return + */ + R filledPopulationPersonType(List<ComMngPopulationServeExcelVO> newVoList, Long communityId, Long userId); } -- Gitblit v1.7.1