모델학습 2단계 패키징 시작,종료일시,상태 로직 추가
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user