From 87df3bedd0fc1540dd75e4ecbfe35310e5e597df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E9=9B=84?= Date: Fri, 21 Apr 2023 05:50:33 +0000 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20server/s?= =?UTF-8?q?rc/main/java/cn/keking/model/FileAttribute.java?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/keking/model/FileAttribute.java | 120 ------------------ 1 file changed, 120 deletions(-) delete mode 100644 server/src/main/java/cn/keking/model/FileAttribute.java diff --git a/server/src/main/java/cn/keking/model/FileAttribute.java b/server/src/main/java/cn/keking/model/FileAttribute.java deleted file mode 100644 index 442c586a..00000000 --- a/server/src/main/java/cn/keking/model/FileAttribute.java +++ /dev/null @@ -1,120 +0,0 @@ -package cn.keking.model; - -import cn.keking.config.ConfigConstants; - -/** - * Created by kl on 2018/1/17. - * Content : - */ -public class FileAttribute { - - private FileType type; - private String suffix; - private String name; - private String url; - private String fileKey; - private String filePassword; - private String userToken; - private String officePreviewType = ConfigConstants.getOfficePreviewType(); - private String tifPreviewType; - private Boolean skipDownLoad = true; - - public FileAttribute() { - } - - public FileAttribute(FileType type, String suffix, String name, String url) { - this.type = type; - this.suffix = suffix; - this.name = name; - this.url = url; - } - - public FileAttribute(FileType type, String suffix, String name, String url, String officePreviewType) { - this.type = type; - this.suffix = suffix; - this.name = name; - this.url = url; - this.officePreviewType = officePreviewType; - } - - public String getFileKey() { - return fileKey; - } - - public void setFileKey(String fileKey) { - this.fileKey = fileKey; - } - - public String getFilePassword() { - return filePassword; - } - - public void setFilePassword(String filePassword) { - this.filePassword = filePassword; - } - - public String getUserToken() { - return userToken; - } - - public void setUserToken(String userToken) { - this.userToken = userToken; - } - - public String getOfficePreviewType() { - return officePreviewType; - } - - public void setOfficePreviewType(String officePreviewType) { - this.officePreviewType = officePreviewType; - } - - public FileType getType() { - return type; - } - - public void setType(FileType type) { - this.type = type; - } - - public String getSuffix() { - return suffix; - } - - public void setSuffix(String suffix) { - this.suffix = suffix; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } - - public Boolean getSkipDownLoad() { - return skipDownLoad; - } - - public void setSkipDownLoad(Boolean skipDownLoad) { - this.skipDownLoad = skipDownLoad; - } - - public String getTifPreviewType() { - return tifPreviewType; - } - - public void setTifPreviewType(String previewType) { - this.tifPreviewType = previewType; - } - -}