From 1f22a04d5c0ea067926cac558f7b7f9559e7d011 Mon Sep 17 00:00:00 2001 From: duwenyuan <1351851645@qq.com> Date: Fri, 17 Oct 2025 19:39:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=B0=E7=AB=99=E6=95=B0=E6=8D=AE=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E6=B7=BB=E5=8A=A0=E7=AD=9B=E9=80=89=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jeecg/mapper/GardsSampleStatAnalysisMapper.java | 2 +- .../jeecg/mapper/xml/GardsSampleStatAnalysisMapper.xml | 10 ++++++++++ .../jeecg/service/impl/SampleStatAnalysisService.java | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/jeecg-module-data-analyze/src/main/java/org/jeecg/mapper/GardsSampleStatAnalysisMapper.java b/jeecg-module-data-analyze/src/main/java/org/jeecg/mapper/GardsSampleStatAnalysisMapper.java index c2c267b..f5a6b53 100644 --- a/jeecg-module-data-analyze/src/main/java/org/jeecg/mapper/GardsSampleStatAnalysisMapper.java +++ b/jeecg-module-data-analyze/src/main/java/org/jeecg/mapper/GardsSampleStatAnalysisMapper.java @@ -215,7 +215,7 @@ public interface GardsSampleStatAnalysisMapper extends BaseMapper findStationListByMenuName(); + List findStationListByMenuName(@Param("systemType")String systemType); //endregion } diff --git a/jeecg-module-data-analyze/src/main/java/org/jeecg/mapper/xml/GardsSampleStatAnalysisMapper.xml b/jeecg-module-data-analyze/src/main/java/org/jeecg/mapper/xml/GardsSampleStatAnalysisMapper.xml index cd2c6f8..a640613 100644 --- a/jeecg-module-data-analyze/src/main/java/org/jeecg/mapper/xml/GardsSampleStatAnalysisMapper.xml +++ b/jeecg-module-data-analyze/src/main/java/org/jeecg/mapper/xml/GardsSampleStatAnalysisMapper.xml @@ -530,5 +530,15 @@ \ No newline at end of file diff --git a/jeecg-module-data-analyze/src/main/java/org/jeecg/service/impl/SampleStatAnalysisService.java b/jeecg-module-data-analyze/src/main/java/org/jeecg/service/impl/SampleStatAnalysisService.java index 16ba3b1..0ab8cb7 100644 --- a/jeecg-module-data-analyze/src/main/java/org/jeecg/service/impl/SampleStatAnalysisService.java +++ b/jeecg-module-data-analyze/src/main/java/org/jeecg/service/impl/SampleStatAnalysisService.java @@ -439,7 +439,7 @@ public class SampleStatAnalysisService extends ServiceImpl findStationListByMenuName(String systemType) { List gardsStations = new LinkedList<>(); //获取台站信息 - gardsStations = this.baseMapper.findStationListByMenuName(); + gardsStations = this.baseMapper.findStationListByMenuName(systemType); return gardsStations; }