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); }