데이터셋 entity 수정, 데이터셋 저장 수정

This commit is contained in:
2026-04-02 18:42:25 +09:00
parent e93f533c59
commit 5546e8ef89
3 changed files with 10 additions and 4 deletions

View File

@@ -139,7 +139,7 @@ public class ModelTrainMngDto {
public static class AddReq {
@NotNull
@Schema(description = "모델 종류 G1, G2, G3", example = "G1")
@Schema(description = "모델 종류 G1, G2, G3, G4", example = "G1")
private String modelNo;
@NotNull
@@ -197,10 +197,11 @@ public class ModelTrainMngDto {
@Schema(description = "폐기물", example = "0")
private Long wasteCnt;
@Schema(
description = "도로, 비닐하우스, 밭, 과수원, 초지, 숲, 물, 모재/자갈, 토분(무덤), 일반토지, 태양광, 기타",
example = "0")
@Schema(description = "도로, 비닐하우스, 밭, 과수원, 초지, 숲, 물, 모재/자갈, 토분(무덤), 일반토지, 기타", example = "0")
private Long LandCoverCnt;
@Schema(description = "태양광", example = "0")
private Long solar;
}
@Getter