모델학습 2단계 패키징 시작,종료일시,상태 로직 추가

This commit is contained in:
2026-02-19 14:43:14 +09:00
parent 5e13c0b396
commit 5ddf6dfeeb
7 changed files with 80 additions and 4 deletions

View File

@@ -112,6 +112,15 @@ public class ModelMasterEntity {
@Column(name = "response_path")
private String responsePath;
@Column(name = "packing_state")
private String packingState;
@Column(name = "packing_strt_dttm")
private ZonedDateTime packingStrtDttm;
@Column(name = "packing_end_dttm")
private ZonedDateTime packingEndDttm;
public ModelTrainMngDto.Basic toDto() {
return new ModelTrainMngDto.Basic(
this.id,
@@ -128,6 +137,9 @@ public class ModelMasterEntity {
this.trainType,
this.modelNo,
this.currentAttemptId,
this.requestPath);
this.requestPath,
this.packingState,
this.packingStrtDttm,
this.packingEndDttm);
}
}