변화탐지 pnu로도 조회 가능하게 하기

This commit is contained in:
2026-03-04 08:04:04 +09:00
parent 278d5d20e8
commit 4d1ea53d8f
5 changed files with 74 additions and 33 deletions

View File

@@ -101,7 +101,7 @@ public class ChangeDetectionService {
*/
public ChangeDetectionDto.PolygonFeatureList getPolygonListByCd(
String chnDtctId, String cdObjectId, List<String> cdObjectIds, String pnu) {
return changeDetectionCoreService.getPolygonListByCd(chnDtctId, cdObjectId, cdObjectIds);
return changeDetectionCoreService.getPolygonListByCd(chnDtctId, cdObjectId, cdObjectIds, pnu);
}
/**
@@ -115,7 +115,7 @@ public class ChangeDetectionService {
*/
public ChangeDetectionDto.PointFeatureList getPointListByCd(
String chnDtctId, String cdObjectId, List<String> cdObjectIds, String pnu) {
return changeDetectionCoreService.getPointListByCd(chnDtctId, cdObjectId, cdObjectIds);
return changeDetectionCoreService.getPointListByCd(chnDtctId, cdObjectId, cdObjectIds, pnu);
}
/**