추론 실행 api 수정

This commit is contained in:
2026-01-13 14:55:46 +09:00
parent 596da6b88e
commit a983223562
7 changed files with 16 additions and 19 deletions

View File

@@ -176,7 +176,7 @@ public class MapSheetInferenceJobService {
m.setCls_model_path(
progressDto.getCdModelClsPath() + "/" + progressDto.getCdModelClsFileName());
m.setCls_model_version(progressDto.getClsModelVersion());
m.setCd_model_type(inferenceType);
m.setCd_model_type(type);
m.setPriority(progressDto.getPriority());
// 추론 다음모델 실행
@@ -188,6 +188,7 @@ public class MapSheetInferenceJobService {
saveInferenceAiDto.setStatus(Status.IN_PROGRESS.getId());
saveInferenceAiDto.setType(type);
saveInferenceAiDto.setModelStartDttm(ZonedDateTime.now());
saveInferenceAiDto.setRunningModelType(inferenceType);
inferenceResultCoreService.update(saveInferenceAiDto);
}