모델학습 설정 dto 수정

This commit is contained in:
2026-02-04 14:03:25 +09:00
parent fdfda049f8
commit abe4272227
5 changed files with 12 additions and 29 deletions

View File

@@ -47,7 +47,7 @@ public class DatasetApiController {
example = "",
schema = @Schema(allowableValues = {"DELIVER", "PRODUCTION"}))
@RequestParam(required = false)
String groupTitle,
String dataType,
@Parameter(description = "제목", example = "") @RequestParam(required = false) String title,
@Parameter(description = "페이지 번호 (0부터 시작)", example = "0") @RequestParam(defaultValue = "0")
int page,
@@ -55,7 +55,7 @@ public class DatasetApiController {
int size) {
DatasetDto.SearchReq searchReq = new DatasetDto.SearchReq();
searchReq.setTitle(title);
searchReq.setGroupTitle(groupTitle);
searchReq.setDataType(dataType);
searchReq.setPage(page);
searchReq.setSize(size);
return ApiResponseDto.ok(datasetService.searchDatasets(searchReq));

View File

@@ -33,8 +33,6 @@ public class DatasetDto {
private Long id;
private UUID uuid;
private String groupTitle;
private String groupTitleCd;
private String title;
private Long roundNo;
private Integer compareYyyy;
@@ -50,7 +48,6 @@ public class DatasetDto {
public Basic(
Long id,
UUID uuid,
String groupTitle,
String title,
Long roundNo,
Integer compareYyyy,
@@ -63,8 +60,6 @@ public class DatasetDto {
String dataType) {
this.id = id;
this.uuid = uuid;
this.groupTitle = getGroupTitle(groupTitle);
this.groupTitleCd = groupTitle;
this.title = title;
this.roundNo = roundNo;
this.compareYyyy = compareYyyy;
@@ -84,11 +79,6 @@ public class DatasetDto {
return String.format("%.2fG", giga);
}
public String getGroupTitle(String groupTitleCd) {
LearnDataType type = Enums.fromId(LearnDataType.class, groupTitleCd);
return type == null ? null : type.getText();
}
public String getStatus(String status) {
LearnDataRegister type = Enums.fromId(LearnDataRegister.class, status);
return type == null ? null : type.getText();
@@ -130,7 +120,7 @@ public class DatasetDto {
public static class SearchReq {
@Schema(description = "구분")
private String groupTitle;
private String dataType;
@Schema(description = "제목 (부분 검색)", example = "1차")
private String title;