영상관리 수정 - 확장자 대문자 ignore, 파일경로 추가, 오류목록 등록일 기준 수정

This commit is contained in:
2026-01-26 11:48:15 +09:00
parent 4373237cc1
commit 1a4371ead3
3 changed files with 44 additions and 30 deletions

View File

@@ -20,6 +20,27 @@ import org.springframework.data.domain.Sort;
public class MapSheetMngDto {
@Getter
@AllArgsConstructor
public enum MapSheetState implements EnumType {
// @formatter:off
DONE("완료"),
NOTYET("처리대기");
// @formatter:on
private final String message;
@Override
public String getId() {
return name();
}
@Override
public String getText() {
return message;
}
}
@Schema(name = "MngSearchReq", description = "영상관리 검색 요청")
@Getter
@Setter
@@ -233,6 +254,7 @@ public class MapSheetMngDto {
private String errorCheckStateName;
private String errorCheckTfwFileName;
private String errorCheckTifFileName;
private String mapSheetPath;
// private List<MngFIleDto> fileArray;
@@ -251,7 +273,8 @@ public class MapSheetMngDto {
String syncTifFileName,
String errorCheckState,
String errorCheckTfwFileName,
String errorCheckTifFileName) {
String errorCheckTifFileName,
String mapSheetPath) {
this.hstUid = hstUid;
this.mngYyyy = mngYyyy;
this.mapSheetNum = mapSheetNum;
@@ -269,6 +292,7 @@ public class MapSheetMngDto {
this.errorCheckStateName = getSyncStateName(errorCheckState);
this.errorCheckTfwFileName = errorCheckTfwFileName;
this.errorCheckTifFileName = errorCheckTifFileName;
this.mapSheetPath = mapSheetPath;
}
private String getSyncStateName(String enumId) {
@@ -366,27 +390,6 @@ public class MapSheetMngDto {
}
}
@Getter
@AllArgsConstructor
public enum MapSheetState implements EnumType {
// @formatter:off
DONE("완료"),
NOTYET("처리대기");
// @formatter:on
private final String message;
@Override
public String getId() {
return name();
}
@Override
public String getText() {
return message;
}
}
// 연도리스틀 조회시 사용하는 request Dto
@Getter
@Setter
@@ -461,6 +464,7 @@ public class MapSheetMngDto {
@NoArgsConstructor
@AllArgsConstructor
public static class MngYyyyDto {
private Integer yyyy;
private String mngPath;
}