Merge branch 'feat/infer_dev_260107' of https://kamco.gitea.gs.dabeeo.com/dabeeo/kamco-dabeeo-backoffice into feat/infer_dev_260107

This commit is contained in:
Moon
2026-01-22 13:39:40 +09:00
5 changed files with 35 additions and 5 deletions

View File

@@ -598,7 +598,7 @@ public class InferenceResultService {
/** 추론 종료 */
@Transactional
public void deleteInferenceEnd() {
public UUID deleteInferenceEnd() {
SaveInferenceAiDto dto = inferenceResultCoreService.getProcessing();
if (dto == null) {
throw new CustomApiException("NOT_FOUND", HttpStatus.NOT_FOUND);
@@ -627,6 +627,7 @@ public class InferenceResultService {
// upsertGeomData
Long learnId = inferenceResultCoreService.getInferenceLearnIdByUuid(dto.getUuid());
inferenceResultCoreService.upsertGeomData(learnId);
return dto.getUuid();
}
/**