페어파일업로드, 파일삭제 수정

This commit is contained in:
Moon
2025-12-18 16:25:59 +09:00
parent dd02e5d886
commit 8684965ac9
6 changed files with 386 additions and 62 deletions

View File

@@ -69,6 +69,7 @@ public class MapSheetMngDto {
public static class MngDto {
private int rowNum;
private int mngYyyy;
private String mngPath;
private String mngState;
private String syncState;
private String syncDataCheckState;
@@ -160,9 +161,10 @@ public class MapSheetMngDto {
@Getter
@Setter
public static class ErrorDataDto {
// private Integer rowNum;
private Long hstUid;
private Integer mngYyyy;
private String mapSheetNum;
private String refMapSheetNum;
private String map50kName;
private String map5kName;
private String mapSrcName;
@@ -183,6 +185,9 @@ public class MapSheetMngDto {
public ErrorDataDto(
Long hstUid,
Integer mngYyyy,
String mapSheetNum,
String refMapSheetNum,
String map50kName,
String map5kName,
String mapSrcName,
@@ -195,6 +200,9 @@ public class MapSheetMngDto {
String errorCheckTfwFileName,
String errorCheckTifFileName) {
this.hstUid = hstUid;
this.mngYyyy = mngYyyy;
this.mapSheetNum = mapSheetNum;
this.refMapSheetNum = refMapSheetNum;
this.map50kName = map50kName;
this.map5kName = map5kName;
this.mapSrcName = mapSrcName;
@@ -218,6 +226,8 @@ public class MapSheetMngDto {
}
}
@Schema(name = "MngFIleDto", description = "관리파일정보")
@Getter
@Setter
@@ -240,6 +250,23 @@ public class MapSheetMngDto {
private String message;
}
@Schema(name = "MngFileAddReq", description = "영상관리파일 등록 요청")
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public static class MngFileAddReq {
private int mngYyyy;
private String mapSheetNum;
private String refMapSheetNum;
private String filePath;
private String fileName;
private String fileExt;
private Long hstUid;
private Long fileSize;
private String fileState;
}
@Schema(name = "MngFilesDto", description = "영상파일내역 검색 리턴")
@Getter
@Setter
@@ -256,4 +283,27 @@ public class MapSheetMngDto {
private Long hstUid;
private Long fileSize;
}
@Schema(name = "ReqUpdateErrorCheckStateDto", description = "영상관리 오류데이터 체크결과 수정요청")
@Getter
@Setter
public static class ReqUpdateErrorCheckStateDto {
private Long hstUid;
private String errorCheckState;
private String errorCheckTfwFileName;
private String errorCheckTifFileName;
/*
public reqErrorDataCheckStateDto(
Long hstUid,
String errorCheckState,
String errorCheckTfwFileName,
String errorCheckTifFileName) {
this.hstUid = hstUid;
this.errorCheckState = errorCheckState;
this.errorCheckTfwFileName = errorCheckTfwFileName;
this.errorCheckTifFileName = errorCheckTifFileName;
}*/
}
}