From 6d74757be317395451900dbe0f48ae06dd6ebae3 Mon Sep 17 00:00:00 2001 From: xiaoguangbin Date: Mon, 10 Feb 2025 11:58:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E8=87=AA=E5=BB=BA?= =?UTF-8?q?=E5=8F=B0=E7=AB=99=E8=83=BD=E8=B0=B1=20updateROI=E6=8A=A5?= =?UTF-8?q?=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/jeecg/modules/service/impl/SelfStationServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jeecg-module-spectrum-analysis/src/main/java/org/jeecg/modules/service/impl/SelfStationServiceImpl.java b/jeecg-module-spectrum-analysis/src/main/java/org/jeecg/modules/service/impl/SelfStationServiceImpl.java index d35f6de8..9c1f9138 100644 --- a/jeecg-module-spectrum-analysis/src/main/java/org/jeecg/modules/service/impl/SelfStationServiceImpl.java +++ b/jeecg-module-spectrum-analysis/src/main/java/org/jeecg/modules/service/impl/SelfStationServiceImpl.java @@ -1147,7 +1147,7 @@ public class SelfStationServiceImpl extends AbstractLogOrReport implements ISelf SelfStationVueData sampleData = selfStationData.getSampleVueData(); String path = StrUtil.subBefore(selfStationData.getSampleTmpPath(), StringPool.SLASH, true); // 生成gamma数据 - selfStationUtil.createGamma(path, selfStationData.getSampleFilePathName(), struct, sampleData); + selfStationUtil.createGamma(path, selfStationData.getSampleFileName(), struct, sampleData); } @Override