mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2025-12-17 21:03:03 +00:00
117 lines
2.0 KiB
Java
117 lines
2.0 KiB
Java
package cn.qaiu.entity;
|
|
|
|
public class FileInfo {
|
|
|
|
/**
|
|
* 文件名
|
|
*/
|
|
String fileName;
|
|
|
|
/**
|
|
* 文件ID
|
|
*/
|
|
String fileId;
|
|
|
|
/**
|
|
* 文件路径
|
|
*/
|
|
String filePath;
|
|
|
|
/**
|
|
* 创建(上传)时间 yyyy-MM-dd HH:mm:ss格式
|
|
*/
|
|
String createTime;
|
|
|
|
/**
|
|
* 创建者
|
|
*/
|
|
String createBy;
|
|
|
|
/**
|
|
* 文件描述
|
|
*/
|
|
String description;
|
|
|
|
/**
|
|
* 下载次数
|
|
*/
|
|
Integer downloadCount;
|
|
|
|
/**
|
|
* 评论信息
|
|
*/
|
|
String comments;
|
|
|
|
public String getFileName() {
|
|
return fileName;
|
|
}
|
|
|
|
public FileInfo setFileName(String fileName) {
|
|
this.fileName = fileName;
|
|
return this;
|
|
}
|
|
|
|
public String getFileId() {
|
|
return fileId;
|
|
}
|
|
|
|
public FileInfo setFileId(String fileId) {
|
|
this.fileId = fileId;
|
|
return this;
|
|
}
|
|
|
|
public String getFilePath() {
|
|
return filePath;
|
|
}
|
|
|
|
public FileInfo setFilePath(String filePath) {
|
|
this.filePath = filePath;
|
|
return this;
|
|
}
|
|
|
|
public String getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public FileInfo setCreateTime(String createTime) {
|
|
this.createTime = createTime;
|
|
return this;
|
|
}
|
|
|
|
public String getCreateBy() {
|
|
return createBy;
|
|
}
|
|
|
|
public FileInfo setCreateBy(String createBy) {
|
|
this.createBy = createBy;
|
|
return this;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public FileInfo setDescription(String description) {
|
|
this.description = description;
|
|
return this;
|
|
}
|
|
|
|
public Integer getDownloadCount() {
|
|
return downloadCount;
|
|
}
|
|
|
|
public FileInfo setDownloadCount(Integer downloadCount) {
|
|
this.downloadCount = downloadCount;
|
|
return this;
|
|
}
|
|
|
|
public String getComments() {
|
|
return comments;
|
|
}
|
|
|
|
public FileInfo setComments(String comments) {
|
|
this.comments = comments;
|
|
return this;
|
|
}
|
|
}
|