From 4de9186c64cf35556aaceb17fc6a2bdaf798c844 Mon Sep 17 00:00:00 2001 From: duwenyuan <15600000461@163.com> Date: Mon, 30 Jun 2025 10:45:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0STATISTICS=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E6=98=BE=E7=A4=BAmdc=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/GardsSampleDataWebServiceImpl.java | 31 +++++++++++++++++-- 1 file changed, 28 insertions(+), 3 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 6f3eb318..512155e1 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 @@ -934,6 +934,8 @@ public class GardsSampleDataWebServiceImpl extends ServiceImpl concList = new LinkedList<>(); resultMap.put(nuclideName+"Conc", concList); + List mdcList = new LinkedList<>(); + resultMap.put(nuclideName+"MDC", mdcList); } } } @@ -1042,6 +1044,7 @@ public class GardsSampleDataWebServiceImpl extends ServiceImpl concList = (List) resultMap.get(nuclideName + "Conc"); + List mdcList = (List) resultMap.get(nuclideName + "MDC"); //将核素名称转为全部大写 String columnName = StringUtils.upperCase(nuclideName); //读取查询出的浓度 @@ -1264,6 +1275,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); } } }