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/ComActAcidRecordDao.java | 62 ++++++++++++++++++++++++++++++ 1 files changed, 61 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActAcidRecordDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActAcidRecordDao.java index 5f494ed..c60df1f 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActAcidRecordDao.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActAcidRecordDao.java @@ -3,6 +3,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.panzhihua.common.model.dtos.community.acid.BatchCheckAcidRecordDTO; import com.panzhihua.common.model.dtos.community.acid.ComActAcidRecordDTO; import com.panzhihua.common.model.dtos.property.CommonPage; import com.panzhihua.common.model.vos.community.acid.*; @@ -10,6 +11,7 @@ import org.apache.ibatis.annotations.Mapper; import com.panzhihua.service_community.entity.ComActAcidRecord; import org.apache.ibatis.annotations.Param; +import org.springframework.web.bind.annotation.RequestParam; import java.util.List; @@ -46,6 +48,13 @@ List<ComActAcidRecordExcelReturn> exportNew(@Param("commonPage")ComActAcidRecordDTO comActAcidRecordDTO); /** + * 导出 + * @param ids + * @return + */ + List<ComActAcidRecordExcelReturn> selectByIds(String ids); + + /** * 5项统计 * @param localCity * @return @@ -58,7 +67,7 @@ * @param localCity * @return */ - FiveCount fiveCountPlus(@Param("date") String date,@Param("localCity") String localCity); + FiveCount fiveCountPlus(@Param("date") String date,@Param("localCity") String localCity,@Param("type") Integer type); /** * 统计查询 @@ -83,4 +92,55 @@ * @return */ FiveCount pushStatics(@Param("date") String date,@Param("localCity") String localCity); + + /** + * 查询上下一条id + * @param id + * @return + */ + ComActAcidRecordVO selectLastNext(@Param("id") Long id,@Param("localCity")String localCity); + + /** + * 查询区级填报人数 + * @param date + * @param localCity + * @return + */ + ComActAcidChartsVO selectAcidCount(@Param("date") String date,@Param("localCity") String localCity); + + /** + * 查询区级风险人员,未填住址人员人数 + * @param date + * @param localCity + * @return + */ + ComActAcidChartsVO selectDangerCount(@Param("date") String date,@Param("localCity") String localCity); + + /** + * 查询区级风险人员处理情况 + * @param date + * @param localCity + * @return + */ + List<ComActAcidChartsVO> selectCheck(@Param("date") String date,@Param("localCity") String localCity); + + /** + * 批量核对防疫信息数据 + * @param batchCheckAcidRecordDTO + * @return + */ + void batchCheck(@Param("batchCheckAcidRecordDTO") BatchCheckAcidRecordDTO batchCheckAcidRecordDTO); + + /** + * 统计所有红 黄 绿码 + * @return + */ + List<ComActAcidColorChartsVO> selectColorMarkGroup(); + + /** + * 按月份统计红 黄 绿码 数量 + * @return + */ + List<ComActAcidColorChartsVO> selectColorMarkGroupByMonth(); + } -- Gitblit v1.7.1