From 268809bb4d1ace0bbe8ec20262ebb7d7822c8630 Mon Sep 17 00:00:00 2001 From: luodangjia <luodangjia> Date: 星期四, 02 一月 2025 11:25:02 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- medicalWaste-system/src/main/java/com/sinata/system/service/MwCollectRecordService.java | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/medicalWaste-system/src/main/java/com/sinata/system/service/MwCollectRecordService.java b/medicalWaste-system/src/main/java/com/sinata/system/service/MwCollectRecordService.java index f027bc9..4858ea0 100644 --- a/medicalWaste-system/src/main/java/com/sinata/system/service/MwCollectRecordService.java +++ b/medicalWaste-system/src/main/java/com/sinata/system/service/MwCollectRecordService.java @@ -2,6 +2,7 @@ import com.baomidou.mybatisplus.extension.service.IService; import com.sinata.common.entity.PageDTO; +import com.sinata.system.domain.MedicalWasteStaticsVO; import com.sinata.system.domain.MwCollectRecord; import com.sinata.system.domain.dto.CollectCarTotalUpDto; import com.sinata.system.domain.dto.CollectDto; @@ -9,8 +10,10 @@ import com.sinata.system.domain.dto.MwCollectRecordDTO; import com.sinata.system.domain.query.DisposalReportQuery; import com.sinata.system.domain.query.MwCollectRecordQuery; +import com.sinata.system.domain.vo.DepartmentTagInfoVO; import com.sinata.system.domain.vo.MedicalWasteProcessVO; import com.sinata.system.domain.vo.MwCollectRecordVO; +import com.sinata.system.domain.vo.MwCollectRecordWarningVO; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @@ -50,6 +53,7 @@ */ void edit(MwCollectRecordDTO dto); List<CollectDto> getGroup(String boxNumber,Long departmentId); + List<CollectDto> getGroupWithStatus(String boxNumber,Long departmentId,Integer status); List<CollectDto> getGroup1(String boxNumber,Long departmentId); /** @@ -70,6 +74,7 @@ void export(MwCollectRecordQuery query, HttpServletResponse response) throws IOException; List<CollectTotalUpDto> collectTotal(LocalDate date,Long departmentId); + List<CollectTotalUpDto> collectTotal3(Long departmentId); List<CollectTotalUpDto> collectTotal1(LocalDate date,Long checkOutUserId,Long hospitalId); List<CollectCarTotalUpDto> carGroup(Long carId); @@ -81,4 +86,39 @@ * @return */ List<MwCollectRecordVO> getRegulationReportList(DisposalReportQuery query); + + /** + * 查询昨日产废记录 + * + * @return + */ + List<MwCollectRecordWarningVO> queryListByDay(); + + /** + * 查询上月产废记录 + * + * @return + */ + List<MwCollectRecordWarningVO> queryListByMonth(); + + /** + * @return + */ + List<MwCollectRecordWarningVO> queryListGroupByDepartment(); + + /** + * 预警数据统计 + * + * @param id + * @return + */ + MedicalWasteStaticsVO queryMedicalWasteStatics(String treeCode); + + /** + * 获取大屏医疗机构标签信息 + * + * @param id + * @return + */ + DepartmentTagInfoVO getTagInfo(Long id); } -- Gitblit v1.7.1