영상관리 중복파일제거 수정
This commit is contained in:
@@ -164,6 +164,7 @@ public class MapSheetMngDto {
|
||||
public static class ErrorDataDto {
|
||||
// private Integer rowNum;
|
||||
private Long hstUid;
|
||||
private String mapSheetNum;
|
||||
private String map50kName;
|
||||
private String map5kName;
|
||||
private String mapSrcName;
|
||||
@@ -242,25 +243,21 @@ public class MapSheetMngDto {
|
||||
private String message;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Schema(name = "MngFilesDto", description = "영상파일내역 검색 리턴")
|
||||
@Getter
|
||||
@Setter
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public enum DataState implements EnumType {
|
||||
NOTYET("대기중"),
|
||||
PROCESSING("진행중"),
|
||||
DONE("완료");
|
||||
|
||||
private final String desc;
|
||||
|
||||
@Override
|
||||
public String getId() {
|
||||
return name();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getText() {
|
||||
return desc;
|
||||
}
|
||||
public static class MngFilesDto {
|
||||
private long fileUid;
|
||||
private int mngYyyy;
|
||||
private String mapSheetNum;
|
||||
private String refMapSheetNum;
|
||||
private String filePath;
|
||||
private String fileName;
|
||||
private String fileExt;
|
||||
private Long hstUid;
|
||||
private Long fileSize;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user