package com.qianwen.smartman.modules.dnc.vo;
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.Collection;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/FolderListVO.class */
|
public class FolderListVO implements Serializable {
|
private static final long serialVersionUID = 1;
|
private Collection<FolderVO> folderList;
|
private Collection<FileVO> fileList;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/FolderListVO$FolderListVOBuilder.class */
|
public static class FolderListVOBuilder {
|
private Collection<FolderVO> folderList;
|
private Collection<FileVO> fileList;
|
|
FolderListVOBuilder() {
|
}
|
|
public FolderListVOBuilder folderList(final Collection<FolderVO> folderList) {
|
this.folderList = folderList;
|
return this;
|
}
|
|
public FolderListVOBuilder fileList(final Collection<FileVO> fileList) {
|
this.fileList = fileList;
|
return this;
|
}
|
|
public FolderListVO build() {
|
return new FolderListVO(this.folderList, this.fileList);
|
}
|
|
public String toString() {
|
return "FolderListVO.FolderListVOBuilder(folderList=" + this.folderList + ", fileList=" + this.fileList + ")";
|
}
|
}
|
|
public static FolderListVOBuilder builder() {
|
return new FolderListVOBuilder();
|
}
|
|
public FolderListVO(final Collection<FolderVO> folderList, final Collection<FileVO> fileList) {
|
this.folderList = folderList;
|
this.fileList = fileList;
|
}
|
|
public FolderListVO(Collection<FolderVO> folderList) {
|
this(folderList, new ArrayList());
|
}
|
|
public Collection<FolderVO> getFolderList() {
|
return this.folderList;
|
}
|
|
public Collection<FileVO> getFileList() {
|
return this.fileList;
|
}
|
}
|