Merge pull request '데이터셋 태양광 등록 변수명 수정' (#195) from feat/training_260324 into develop

Reviewed-on: #195
This commit was merged in pull request #195.
This commit is contained in:
2026-04-07 16:47:06 +09:00
2 changed files with 2 additions and 2 deletions

View File

@@ -201,7 +201,7 @@ public class ModelTrainMngDto {
private Long LandCoverCnt;
@Schema(description = "태양광", example = "0")
private Long solarCnt;
private Long solarPanelCnt;
}
@Getter

View File

@@ -155,7 +155,7 @@ public class ModelTrainMngCoreService {
} else if (addReq.getModelNo().equals(ModelType.G3.getId())) {
datasetEntity.setLandCoverCnt(dataset.getSummary().getLandCoverCnt());
} else if (addReq.getModelNo().equals(ModelType.G4.getId())) {
datasetEntity.setSolarCnt(dataset.getSummary().getSolarCnt());
datasetEntity.setSolarCnt(dataset.getSummary().getSolarPanelCnt());
}
datasetEntity.setCreatedUid(userUtil.getId());