영상관리 추가 수정

This commit is contained in:
Moon
2025-12-17 11:28:25 +09:00
parent ea6fcb2364
commit 3efb5302df
6 changed files with 66 additions and 101 deletions

View File

@@ -40,10 +40,9 @@ public class MapSheetMngApiController {
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
})
@PostMapping("/mng-list")
public ApiResponseDto<Page<MapSheetMngDto.MngDto>> findMapSheetMngList(
@RequestBody MapSheetMngDto.MngSearchReq searchReq) {
public ApiResponseDto<List<MapSheetMngDto.MngDto>> findMapSheetMngList() {
return ApiResponseDto.ok(mapSheetMngService.findMapSheetMngList(searchReq));
return ApiResponseDto.ok(mapSheetMngService.findMapSheetMngList());
}
@Operation(summary = "영상데이터관리 상세", description = "영상데이터관리 상세")

View File

@@ -151,7 +151,6 @@ public class MapSheetMngDto {
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public static class ErrorDataDto {
// private Integer rowNum;
private Long hstUid;
@@ -163,10 +162,12 @@ public class MapSheetMngDto {
private String syncState;
private String syncCheckState;
private Long fileUid;
private String fileName;
//private Long fileUid;
private String tfwFileName;
private String tifFileName;
//private List<MngFIleDto> fileArray;
private List<MngFIleDto> fileArray;
public ErrorDataDto(
Long hstUid,
@@ -176,7 +177,9 @@ public class MapSheetMngDto {
Integer mapCodeSrc,
ZonedDateTime createdDttm,
String syncState,
String syncCheckState) {
String syncCheckState,
String tfwFileName,
String tifFileName) {
this.hstUid = hstUid;
this.map50kName = map50kName;
this.map5kName = map5kName;
@@ -185,6 +188,8 @@ public class MapSheetMngDto {
this.createdDttm = createdDttm;
this.syncState = syncState;
this.syncCheckState = syncCheckState;
this.tfwFileName = tfwFileName;
this.tifFileName = tifFileName;
}
}

View File

@@ -213,8 +213,8 @@ public class MapSheetMngService {
}
public Page<MapSheetMngDto.MngDto> findMapSheetMngList(MapSheetMngDto.MngSearchReq searchReq) {
return mapSheetMngCoreService.findMapSheetMngList(searchReq);
public List<MapSheetMngDto.MngDto> findMapSheetMngList() {
return mapSheetMngCoreService.findMapSheetMngList();
}
public MapSheetMngDto.MngDto findMapSheetMng(int mngYyyy) {