모델학습관리 > 모델별 진행 상황 API 추가

This commit is contained in:
2026-02-19 17:17:11 +09:00
parent d2ca94ea55
commit bf212842d8
6 changed files with 115 additions and 0 deletions

View File

@@ -312,4 +312,16 @@ public class ModelTrainMngDto {
return formatDuration(this.packingStrtDttm, this.packingEndDttm);
}
}
@Getter
@Builder
@AllArgsConstructor
public static class ModelProgressStepDto {
private int step;
private String status;
@JsonFormatDttm private ZonedDateTime startTime;
@JsonFormatDttm private ZonedDateTime endTime;
private boolean isError;
}
}