모델학습 설정 dto 수정

This commit is contained in:
2026-02-04 13:56:32 +09:00
parent 2c825b14ee
commit fdfda049f8
3 changed files with 24 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ public class DatasetEntity {
private Integer targetYyyy;
@Size(max = 50)
@ColumnDefault("'CREATE'")
@ColumnDefault("'PRODUCTION'")
@Column(name = "data_type", length = 50)
private String dataType;
@@ -137,10 +137,13 @@ public class DatasetEntity {
this.groupTitle,
this.title,
this.roundNo,
this.compareYyyy,
this.targetYyyy,
this.totalSize,
this.memo,
this.createdDttm,
this.status,
this.deleted);
this.deleted,
this.dataType);
}
}