영상관리 - 자동추론제외 수정, uploadPair 수정
This commit is contained in:
@@ -204,12 +204,12 @@ public class MapSheetMngApiController {
|
||||
@PostMapping(value = "/upload-pair", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
||||
public ApiResponseDto<MapSheetMngDto.DmlReturn> uploadPair(
|
||||
@RequestPart("tfw") MultipartFile tfwFile,
|
||||
@RequestPart("tif") MultipartFile tifFile,
|
||||
@RequestParam(value = "hstUid", required = false) Long hstUid,
|
||||
@RequestParam(value = "overwrite", required = false) boolean overwrite) {
|
||||
@RequestParam(value = "tifFileName") String tifFile,
|
||||
@RequestParam(value = "tifFileSize") Long tifFileSize,
|
||||
@RequestParam(value = "hstUid", required = false) Long hstUid) {
|
||||
|
||||
return ApiResponseDto.createOK(
|
||||
mapSheetMngService.uploadPair(tfwFile, tifFile, hstUid, overwrite));
|
||||
mapSheetMngService.uploadPair(tfwFile, tifFile, hstUid, tifFileSize));
|
||||
}
|
||||
|
||||
@Operation(summary = "영상관리 > 파일조회", description = "영상관리 > 파일조회")
|
||||
|
||||
Reference in New Issue
Block a user