51 lines
923 B
Java
51 lines
923 B
Java
|
package aiyh.utils.entity;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @author EBU7-dev1-ayh
|
||
|
* @create 2021/10/25 0025 17:29
|
||
|
* 批量压缩
|
||
|
*/
|
||
|
|
||
|
|
||
|
public class ListZipEntity {
|
||
|
private String directory;
|
||
|
private boolean isDirectory;
|
||
|
private List<AInputStream> aInputStreamList;
|
||
|
private List<ListZipEntity> fileList;
|
||
|
|
||
|
{
|
||
|
this.isDirectory = false;
|
||
|
}
|
||
|
|
||
|
public boolean isDirectory() {
|
||
|
return isDirectory;
|
||
|
}
|
||
|
|
||
|
public String getDirectory() {
|
||
|
return directory;
|
||
|
}
|
||
|
|
||
|
public void setDirectory(String directory) {
|
||
|
this.isDirectory = true;
|
||
|
this.directory = directory;
|
||
|
}
|
||
|
|
||
|
public List<ListZipEntity> getFileList() {
|
||
|
return fileList;
|
||
|
}
|
||
|
|
||
|
public void setFileList(List<ListZipEntity> fileList) {
|
||
|
this.fileList = fileList;
|
||
|
}
|
||
|
|
||
|
public List<AInputStream> getaInputStreamList() {
|
||
|
return aInputStreamList;
|
||
|
}
|
||
|
|
||
|
public void setaInputStreamList(List<AInputStream> aInputStreamList) {
|
||
|
this.aInputStreamList = aInputStreamList;
|
||
|
}
|
||
|
}
|