영상관리 -> 폴더조회, 파일리스트 조회 POST로 변경

This commit is contained in:
Harry M. You
2025-12-02 16:53:46 +09:00
parent fc762ae5b4
commit dcb6afc916
3 changed files with 22 additions and 13 deletions

View File

@@ -17,16 +17,20 @@ public class FileDto {
@Setter
@NoArgsConstructor
@AllArgsConstructor
public static class SrchDto {
public static class SrchFoldersDto {
@NotNull private String dirPath;
}
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public static class SrchFilesDto {
@NotNull private String dirPath;
@NotNull private String extension;
@NotNull private String sortType;
@NotNull private Integer startPos;
@NotNull private Integer endPos;
}
@Schema(name = "FolderDto", description = "폴더 정보")