변화탐지 API 커밋, 에러로그 진행중
This commit is contained in:
@@ -21,8 +21,9 @@ public class ChangeDetectionService {
|
||||
return changeDetectionCoreService.getPolygonToJson();
|
||||
}
|
||||
|
||||
public List<ChangeDetectionDto.CountDto> getChangeDetectionClassCount(Long id) {
|
||||
return changeDetectionCoreService.getChangeDetectionClassCount(id);
|
||||
public List<ChangeDetectionDto.CountDto> getChangeDetectionClassCount(
|
||||
Long id, String mapSheetNum) {
|
||||
return changeDetectionCoreService.getChangeDetectionClassCount(id, mapSheetNum);
|
||||
}
|
||||
|
||||
public ChangeDetectionDto.CogUrlDto getChangeDetectionCogUrl(ChangeDetectionDto.CogUrlReq req) {
|
||||
@@ -32,4 +33,18 @@ public class ChangeDetectionService {
|
||||
public List<ChangeDetectionDto.AnalYearList> getChangeDetectionYearList() {
|
||||
return changeDetectionCoreService.getChangeDetectionYearList();
|
||||
}
|
||||
|
||||
public List<ChangeDetectionDto.PolygonGeometry> getChangeDetectionPolygonList(
|
||||
Long analUid, String mapSheetNum) {
|
||||
return changeDetectionCoreService.getChangeDetectionPolygonList(analUid, mapSheetNum);
|
||||
}
|
||||
|
||||
public List<ChangeDetectionDto.PointGeometry> getChangeDetectionPointList(
|
||||
Long analUid, String mapSheetNum) {
|
||||
return changeDetectionCoreService.getChangeDetectionPointList(analUid, mapSheetNum);
|
||||
}
|
||||
|
||||
public List<ChangeDetectionDto.MapSheetList> getChangeDetectionMapSheetList(Long analUid) {
|
||||
return changeDetectionCoreService.getChangeDetectionMapSheetList(analUid);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user