fix: 修复高级设置,按图表删除告警信息地址错误问题

This commit is contained in:
wangjiahao
2025-04-08 16:01:45 +08:00
committed by 王嘉豪
parent fdbdfa1ca2
commit a006da572b
2 changed files with 3 additions and 3 deletions

View File

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