mirror of
https://github.com/KOHGYLW/kiftd-source.git
synced 2025-01-08 12:07:47 +08:00
update to v1.2.0-SNAPSHOT
This commit is contained in:
parent
1e4b59c95c
commit
e0cc5a5440
@ -0,0 +1,43 @@
|
||||
package kohgylw.kiftd.server.pojo;
|
||||
|
||||
/**
|
||||
*
|
||||
* <h2>文件夹内容统计信息封装类</h2>
|
||||
* <p>
|
||||
* 该类用于封装文件夹内容的统计信息,可在JSON化后传至前端。
|
||||
* </p>
|
||||
*
|
||||
* @author 青阳龙野(kohgylw)
|
||||
* @version 1.0
|
||||
*/
|
||||
public class FolderCountResult {
|
||||
|
||||
private long totalSize;
|
||||
private long folderNum;
|
||||
private long fileNum;
|
||||
|
||||
public long getTotalSize() {
|
||||
return totalSize;
|
||||
}
|
||||
|
||||
public void setTotalSize(long totalSize) {
|
||||
this.totalSize = totalSize;
|
||||
}
|
||||
|
||||
public long getFolderNum() {
|
||||
return folderNum;
|
||||
}
|
||||
|
||||
public void setFolderNum(long folderNum) {
|
||||
this.folderNum = folderNum;
|
||||
}
|
||||
|
||||
public long getFileNum() {
|
||||
return fileNum;
|
||||
}
|
||||
|
||||
public void setFileNum(long fileNum) {
|
||||
this.fileNum = fileNum;
|
||||
}
|
||||
|
||||
}
|
1
target/classes/.gitignore
vendored
1
target/classes/.gitignore
vendored
@ -1 +0,0 @@
|
||||
/kohgylw/
|
BIN
target/classes/kohgylw/kiftd/server/pojo/FolderCountResult.class
Normal file
BIN
target/classes/kohgylw/kiftd/server/pojo/FolderCountResult.class
Normal file
Binary file not shown.
BIN
target/classes/kohgylw/kiftd/ui/module/FSViewer$3$1.class
Normal file
BIN
target/classes/kohgylw/kiftd/ui/module/FSViewer$3$1.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user