From 0184bf471382f9328df9bdd47acf451e4e2c5cb0 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期三, 11 六月 2025 13:57:37 +0800 Subject: [PATCH] 达梦数据库及数据库脚本 --- medicalWaste-system/src/main/java/com/sinata/system/service/MwCollectRecordService.java | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 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 4858ea0..3954456 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 @@ -19,7 +19,6 @@ import java.io.IOException; import java.time.LocalDate; import java.util.List; -import java.util.List; /** * <p> @@ -55,6 +54,8 @@ List<CollectDto> getGroup(String boxNumber,Long departmentId); List<CollectDto> getGroupWithStatus(String boxNumber,Long departmentId,Integer status); List<CollectDto> getGroup1(String boxNumber,Long departmentId); + List<CollectDto> getGroup2(String boxNumber,Long departmentId); + List<CollectDto> getGroup3(String boxNumber,Long departmentId,Long carId); /** * 流转过程 @@ -77,7 +78,7 @@ List<CollectTotalUpDto> collectTotal3(Long departmentId); List<CollectTotalUpDto> collectTotal1(LocalDate date,Long checkOutUserId,Long hospitalId); - List<CollectCarTotalUpDto> carGroup(Long carId); + List<CollectCarTotalUpDto> carGroup(Long carId,String name); /** * 监管报表医疗废物产生列表 @@ -121,4 +122,11 @@ * @return */ DepartmentTagInfoVO getTagInfo(Long id); + + /** + * 删除医废 + * + * @param id + */ + void delete(Long id); } -- Gitblit v1.7.1