From 1c673f2b4692decf59e9027e2901ee843ec9ea8f Mon Sep 17 00:00:00 2001 From: QAIU <736226400@qq.com> Date: Fri, 25 Oct 2024 18:18:42 +0800 Subject: [PATCH] idea run Main. --- .../main/java/cn/qaiu/entity/FileInfo.java | 116 ++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 parser/src/main/java/cn/qaiu/entity/FileInfo.java diff --git a/parser/src/main/java/cn/qaiu/entity/FileInfo.java b/parser/src/main/java/cn/qaiu/entity/FileInfo.java new file mode 100644 index 0000000..0a54204 --- /dev/null +++ b/parser/src/main/java/cn/qaiu/entity/FileInfo.java @@ -0,0 +1,116 @@ +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; + } +}