From a006da572bfa28f839c570403b154454e42eecf6 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Tue, 8 Apr 2025 16:01:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=AB=98=E7=BA=A7?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=EF=BC=8C=E6=8C=89=E5=9B=BE=E8=A1=A8=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E5=91=8A=E8=AD=A6=E4=BF=A1=E6=81=AF=E5=9C=B0=E5=9D=80?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- de-xpack | 2 +- .../src/main/java/io/dataease/api/threshold/ThresholdApi.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/de-xpack b/de-xpack index 80a99849e9..c3d100fb07 160000 --- a/de-xpack +++ b/de-xpack @@ -1 +1 @@ -Subproject commit 80a99849e922a4a7c6851319d205cc291b020092 +Subproject commit c3d100fb0751c031a6d103a1d429e584a3eb0ad5 diff --git a/sdk/api/api-base/src/main/java/io/dataease/api/threshold/ThresholdApi.java b/sdk/api/api-base/src/main/java/io/dataease/api/threshold/ThresholdApi.java index 92c5076e7b..35ca9f9660 100644 --- a/sdk/api/api-base/src/main/java/io/dataease/api/threshold/ThresholdApi.java +++ b/sdk/api/api-base/src/main/java/io/dataease/api/threshold/ThresholdApi.java @@ -69,6 +69,6 @@ public interface ThresholdApi { boolean anyThreshold(@PathVariable("chartId") Long chartId, @PathVariable("resourceTable") String resourceTable); @Operation(summary = "根据视图ID删除") - @GetMapping("/deleteWithChart/{chartId}") - void deleteWithChart(@PathVariable("chartId") Long chartId); + @GetMapping("/deleteWithChart/{chartId}/{resourceTable}") + void deleteWithChart(@PathVariable("chartId") Long chartId, @PathVariable("resourceTable") String resourceTable); }