dataset 테이블 수정, 모델학습 설정 dto 추가

This commit is contained in:
2026-02-04 12:24:55 +09:00
parent f1ad59d0b1
commit 60d45ee2ce
12 changed files with 459 additions and 131 deletions

View File

@@ -37,6 +37,8 @@ public class DatasetDto {
private String groupTitleCd;
private String title;
private Long roundNo;
private Integer compareYyyy;
private Integer targetYyyy;
private String totalSize;
private String memo;
@JsonFormatDttm private ZonedDateTime createdDttm;
@@ -154,10 +156,15 @@ public class DatasetDto {
@Schema(description = "제목", example = "1차 제작")
private String title;
@NotBlank(message = "연도는 필수입니다")
@Size(max = 4, message = "연도는 4자리입니다")
@Schema(description = "연도 (YYYY)", example = "2024")
private String year;
@NotBlank(message = "비교연도는 필수입니다")
@Size(max = 4, message = "비교연도는 4자리입니다")
@Schema(description = "비교연도 (YYYY)", example = "2024")
private Integer compareYear;
@NotBlank(message = "기준연도는 필수입니다")
@Size(max = 4, message = "기준연도는 4자리입니다")
@Schema(description = "기준연도 (YYYY)", example = "2024")
private Integer targetYyyy;
@Schema(description = "회차", example = "1")
private Long roundNo;