영상데이터관리 > 업로드처리,추론제외 API 추가

This commit is contained in:
2025-12-03 14:47:58 +09:00
parent 3d6393a65f
commit ddf4239a52
7 changed files with 177 additions and 19 deletions

View File

@@ -167,4 +167,12 @@ public class MapSheetMngService {
public Page<MapSheetMngDto.MngDto> findMapSheetMngList(MapSheetMngDto.@Valid searchReq searchReq) {
return mapSheetMngCoreService.findMapSheetMngList(searchReq);
}
public MapSheetMngDto.DmlReturn uploadProcess(@Valid List<Long> hstUidList) {
return mapSheetMngCoreService.uploadProcess(hstUidList);
}
public MapSheetMngDto.DmlReturn updateExceptUseInference(@Valid List<Long> hstUidList) {
return mapSheetMngCoreService.updateExceptUseInference(hstUidList);
}
}