변화탐지정보 도엽번호 추가

This commit is contained in:
DanielLee
2026-01-14 16:47:59 +09:00
parent 0f636ee7ce
commit b9e72e3626
2 changed files with 7 additions and 0 deletions

View File

@@ -472,6 +472,10 @@ public class TrainingDataLabelRepositoryImpl extends QuerydslRepositorySupport
mapSheetAnalDataInferenceGeomEntityEntity.getPnu() != null
? mapSheetAnalDataInferenceGeomEntityEntity.getPnu()
: 0L)
.mapSheetNum(
mapSheetAnalDataInferenceGeomEntityEntity.getMapSheetNum() != null
? mapSheetAnalDataInferenceGeomEntityEntity.getMapSheetNum()
: 0L)
.build();
var inspectionResultInfo =

View File

@@ -331,6 +331,9 @@ public class TrainingDataLabelDto {
@Schema(description = "PNU (필지고유번호)", example = "36221202306020")
private Long pnu;
@Schema(description = "도엽번호 (map_sheet_num)", example = "34602057")
private Long mapSheetNum;
}
@Schema(name = "ClassificationInfo", description = "분류정보")