From ae7f04be9321ddbe17c46fae8ab05d34e7493f9f Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期三, 19 二月 2025 13:40:06 +0800 Subject: [PATCH] 管理后台bug修改 --- medicalWaste-system/src/main/java/com/sinata/system/service/impl/MwCollectRecordServiceImpl.java | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/medicalWaste-system/src/main/java/com/sinata/system/service/impl/MwCollectRecordServiceImpl.java b/medicalWaste-system/src/main/java/com/sinata/system/service/impl/MwCollectRecordServiceImpl.java index c835559..cad750f 100644 --- a/medicalWaste-system/src/main/java/com/sinata/system/service/impl/MwCollectRecordServiceImpl.java +++ b/medicalWaste-system/src/main/java/com/sinata/system/service/impl/MwCollectRecordServiceImpl.java @@ -98,7 +98,14 @@ public List<CollectDto> getGroup1(String boxNumber,Long departmentId) { return this.baseMapper.getGroup1(boxNumber,departmentId); } - + @Override + public List<CollectDto> getGroup2(String boxNumber,Long departmentId) { + return this.baseMapper.getGroup2(boxNumber,departmentId); + } + @Override + public List<CollectDto> getGroup3(String boxNumber,Long departmentId,Long carId) { + return this.baseMapper.getGroup3(boxNumber,departmentId,carId); + } /** * 流转过程 * @@ -152,8 +159,8 @@ } @Override - public List<CollectCarTotalUpDto> carGroup(Long carId) { - return this.baseMapper.carGroup(carId); + public List<CollectCarTotalUpDto> carGroup(Long carId,String name) { + return this.baseMapper.carGroup(carId,name); } /** -- Gitblit v1.7.1