하이퍼파라미터 기능 추가

This commit is contained in:
2026-02-03 16:31:43 +09:00
parent 44878e9c37
commit d66711e4f4
11 changed files with 277 additions and 216 deletions

View File

@@ -280,9 +280,9 @@ public class ModelHyperParamEntity {
private String memo;
@NotNull
@ColumnDefault("'N'")
@ColumnDefault("false")
@Column(name = "del_yn", nullable = false, length = 1)
private String delYn = "N";
private Boolean delYn = false;
@NotNull
@ColumnDefault("CURRENT_TIMESTAMP")

View File

@@ -186,6 +186,7 @@ public class ModelTrainMasterEntity {
this.step2Duration,
this.step1Status,
this.step2Status,
this.transferStatus);
this.transferStatus,
this.statusCd);
}
}