전이학습 추가

This commit is contained in:
2026-02-05 18:23:07 +09:00
parent db6844f0e7
commit 0a7f01a2f5
13 changed files with 243 additions and 47 deletions

View File

@@ -232,7 +232,7 @@ public class DatasetDto {
private Long datasetId;
private UUID uuid;
private String dataType;
private String yyyy;
private String title;
private Long roundNo;
private Integer compareYyyy;
private Integer targetYyyy;
@@ -246,7 +246,7 @@ public class DatasetDto {
Long datasetId,
UUID uuid,
String dataType,
String yyyy,
String title,
Long roundNo,
Integer compareYyyy,
Integer targetYyyy,
@@ -255,7 +255,7 @@ public class DatasetDto {
this.datasetId = datasetId;
this.uuid = uuid;
this.dataType = dataType;
this.yyyy = yyyy;
this.title = title;
this.roundNo = roundNo;
this.compareYyyy = compareYyyy;
this.targetYyyy = targetYyyy;
@@ -267,7 +267,7 @@ public class DatasetDto {
Long datasetId,
UUID uuid,
String dataType,
String yyyy,
String title,
Long roundNo,
Integer compareYyyy,
Integer targetYyyy,
@@ -278,7 +278,7 @@ public class DatasetDto {
this.uuid = uuid;
this.dataType = dataType;
this.dataTypeName = getDataTypeName(dataType);
this.yyyy = yyyy;
this.title = title;
this.roundNo = roundNo;
this.compareYyyy = compareYyyy;
this.targetYyyy = targetYyyy;
@@ -296,4 +296,16 @@ public class DatasetDto {
return this.compareYyyy + "-" + this.targetYyyy;
}
}
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public static class DatasetReq {
String modelNo;
String dataType;
UUID uuid;
Long id;
List<Long> ids;
}
}