From fbba4ea24430b14eee18b190b7e08f1a58a8e504 Mon Sep 17 00:00:00 2001
From: XiaoRuby <3114200645@qq.com>
Date: 星期四, 03 八月 2023 13:48:38 +0800
Subject: [PATCH] LIMS管理系统框架-开发8-3

---
 standard-server/src/main/java/com/yuanchu/limslaboratory/service/impl/MaterialServiceImpl.java |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/standard-server/src/main/java/com/yuanchu/limslaboratory/service/impl/MaterialServiceImpl.java b/standard-server/src/main/java/com/yuanchu/limslaboratory/service/impl/MaterialServiceImpl.java
index feb1a9e..83e6236 100644
--- a/standard-server/src/main/java/com/yuanchu/limslaboratory/service/impl/MaterialServiceImpl.java
+++ b/standard-server/src/main/java/com/yuanchu/limslaboratory/service/impl/MaterialServiceImpl.java
@@ -47,7 +47,7 @@
 
     //鏌ヨ鐗╂枡淇℃伅
     @Override
-    public List<Material> selectMaterialLimit(int pageSize, int countSize, int type) {
+    public List<Map> selectMaterialLimit(int pageSize, int countSize, int type) {
         return materialMapper.selectMaterialLimit((pageSize - 1) * countSize,pageSize * countSize, type);
     }
 
@@ -120,7 +120,6 @@
                     if (!ObjectUtils.isEmpty(standardMaps)){
                         for (Map<String, Object> standardMap : standardMaps){
                             LambdaQueryWrapper<Specifications> specificationWrapper = new LambdaQueryWrapper<>();
-                            MyUtil.PrintLog(standardMap.get("id").toString());
                             specificationWrapper.eq(Specifications::getStandardId, standardMap.get("id"));
                             if (!ObjectUtils.isEmpty(specificationName)){
                                 specificationWrapper.eq(Specifications::getName, specificationName);

--
Gitblit v1.9.3