mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2025-12-19 05:43:03 +00:00
优化内核, QQ邮箱微信账户分享,添加123请求header
This commit is contained in:
@@ -20,9 +20,9 @@ public class FileInfo {
|
||||
Long size;
|
||||
|
||||
/**
|
||||
* MIME类型
|
||||
* 类型
|
||||
*/
|
||||
String fileMIME;
|
||||
String fileType;
|
||||
|
||||
/**
|
||||
* 文件路径
|
||||
@@ -34,6 +34,11 @@ public class FileInfo {
|
||||
*/
|
||||
String createTime;
|
||||
|
||||
/**
|
||||
* 上次修改时间
|
||||
*/
|
||||
String updateTime;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
@@ -81,12 +86,12 @@ public class FileInfo {
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getFileMIME() {
|
||||
return fileMIME;
|
||||
public String getFileType() {
|
||||
return fileType;
|
||||
}
|
||||
|
||||
public FileInfo setFileMIME(String fileMIME) {
|
||||
this.fileMIME = fileMIME;
|
||||
public FileInfo setFileType(String fileType) {
|
||||
this.fileType = fileType;
|
||||
return this;
|
||||
}
|
||||
|
||||
@@ -108,6 +113,15 @@ public class FileInfo {
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public FileInfo setUpdateTime(String updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user