추론진행 도엽 목록 api추가

This commit is contained in:
2026-01-20 11:21:49 +09:00
parent 9090c94611
commit 71de307ad7
5 changed files with 65 additions and 0 deletions

View File

@@ -595,4 +595,14 @@ public class InferenceResultService {
AuditLogDto.searchReq searchReq, DownloadReq downloadReq) {
return auditLogCoreService.findLogByAccount(searchReq, downloadReq);
}
/**
* 실행중인 추론 도엽명 목록
*
* @param uuid uuid
* @return
*/
public List<String> getInferenceRunMapId(UUID uuid) {
return inferenceResultCoreService.getInferenceRunMapId(uuid);
}
}