추론 결과 조회 수정

This commit is contained in:
2026-01-22 13:31:03 +09:00
parent 86c9a6b98d
commit 14394eb909
5 changed files with 35 additions and 5 deletions

View File

@@ -168,9 +168,9 @@ public class InferenceResultApiController {
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
})
@DeleteMapping("/end")
public ApiResponseDto<Void> getInferenceGeomList() {
inferenceResultService.deleteInferenceEnd();
return ApiResponseDto.ok(null);
public ApiResponseDto<UUID> getInferenceGeomList() {
UUID uuid = inferenceResultService.deleteInferenceEnd();
return ApiResponseDto.ok(uuid);
}
@Operation(summary = "분석 모델 선택 조회", description = "변화탐지 실행 정보 입력 모델선택 팝업 ")