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/dao/ComActFourMemberDao.java | 19 +++++++++++++++++-- 1 files changed, 17 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActFourMemberDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActFourMemberDao.java index b2968df..83f4f30 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActFourMemberDao.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActFourMemberDao.java @@ -29,8 +29,8 @@ * @return */ IPage<ComActFourMemberVO> pageList(Page page, @Param("commonPage")CommonPage commonPage); - ComActFourMemberVO getById(Integer id); - ComActFourMemberVO getByIdVillage(Integer id); + ComActFourMemberVO getById(Long id); + ComActFourMemberVO getByIdVillage(Long id); /** * 获取四长四员基础数据 @@ -60,4 +60,19 @@ * @return */ StatisticsCommVO retrieveJJWTTotalPolylineData(@Param("communityId") Long communityId, @Param("date") String date); + + /** + * 新增院落议事数统计 + * @param communityId + * @return + */ + List<StatisticsCommVO> retrieveYLYSAddPolylineData(@Param("communityId") Long communityId); + + /** + * 累计院落议事数统计 + * @param communityId + * @param date + * @return + */ + StatisticsCommVO retrieveYLYSTotalPolylineData(@Param("communityId") Long communityId, @Param("date") String date); } -- Gitblit v1.7.1