From bd6befda93b19867b56eb5f8ef3281ae6e5efbc4 Mon Sep 17 00:00:00 2001 From: duwenyuan <15600000461@163.com> Date: Tue, 15 Jul 2025 14:35:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=B1=BB=E5=9E=8B=E6=98=AFPa?= =?UTF-8?q?rticulate=E7=9A=84MDC=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/GardsSampleDataWebServiceImpl.java | 32 ++++++++++++++++--- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/jeecg-module-web-statistics/src/main/java/org/jeecg/modules/service/impl/GardsSampleDataWebServiceImpl.java b/jeecg-module-web-statistics/src/main/java/org/jeecg/modules/service/impl/GardsSampleDataWebServiceImpl.java index dfe8c191..90b5cf2e 100644 --- a/jeecg-module-web-statistics/src/main/java/org/jeecg/modules/service/impl/GardsSampleDataWebServiceImpl.java +++ b/jeecg-module-web-statistics/src/main/java/org/jeecg/modules/service/impl/GardsSampleDataWebServiceImpl.java @@ -752,7 +752,6 @@ public class GardsSampleDataWebServiceImpl extends ServiceImpl concList = new LinkedList<>(); resultMap.put(nuclideName+"Conc", concList); + List mdcList = new LinkedList<>(); + resultMap.put(nuclideName+"MDC", mdcList); } } } @@ -1086,6 +1087,7 @@ public class GardsSampleDataWebServiceImpl extends ServiceImpl concList = (List) resultMap.get(nuclideName + "Conc"); + List mdcList = (List) resultMap.get(nuclideName + "MDC"); //将核素名称转为全部大写 String columnName = StringUtils.upperCase(nuclideName); //读取查询出的浓度 @@ -1308,6 +1318,18 @@ public class GardsSampleDataWebServiceImpl extends ServiceImpl concList = (List) resultMap.get(nuclideName + "Conc"); + List mdcList = (List) resultMap.get(nuclideName + "MDC"); concList.add(null); + mdcList.add(null); } } }