학습결과 파일 베스트 에폭 제외 삭제

This commit is contained in:
2026-03-25 17:56:36 +09:00
parent 888c0e314b
commit 04eddfce54
6 changed files with 200 additions and 3 deletions

View File

@@ -286,8 +286,7 @@ public class DatasetApiController {
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
})
@PostMapping("/deliveries")
public ApiResponseDto<ResponseObj> insertDeliveriesDataset(@RequestBody AddDeliveriesReq req)
throws IOException {
public ApiResponseDto<ResponseObj> insertDeliveriesDataset(@RequestBody AddDeliveriesReq req) {
return ApiResponseDto.createOK(datasetService.insertDeliveriesDataset(req));
}
}

View File

@@ -541,10 +541,19 @@ public class DatasetDto {
@Schema(description = "경로", example = "/")
private String filePath;
@Schema(description = "제목", example = "")
private String title;
@Schema(description = "메모", example = "")
private String memo;
@Schema(description = "비교년도", example = "")
private Integer compareYyyy;
@Schema(description = "기준년도", example = "")
private Integer targetYyyy;
@Schema(description = "회차", example = "")
private Long roundNo;
}
}