From cc653ad110cc3e3d3ec3c3ca595278ee67baf111 Mon Sep 17 00:00:00 2001 From: "453530270@qq.com" Date: Tue, 30 Apr 2024 18:36:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/io/xtfs/jwebfs/bean/WbFile.java | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/main/java/io/xtfs/jwebfs/bean/WbFile.java diff --git a/src/main/java/io/xtfs/jwebfs/bean/WbFile.java b/src/main/java/io/xtfs/jwebfs/bean/WbFile.java new file mode 100644 index 0000000..1c6fbe0 --- /dev/null +++ b/src/main/java/io/xtfs/jwebfs/bean/WbFile.java @@ -0,0 +1,34 @@ +package io.xtfs.jwebfs.bean; + +/** + * 文件实体 + */ +public class WbFile { + private Integer id; // + private String filenmae; // 文件名 + private String filehash; // 文件hash + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getFilenmae() { + return filenmae; + } + + public void setFilenmae(String filenmae) { + this.filenmae = filenmae; + } + + public String getFilehash() { + return filehash; + } + + public void setFilehash(String filehash) { + this.filehash = filehash; + } +}