mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2026-03-14 05:03:49 +08:00
103 lines
2.3 KiB
Java
103 lines
2.3 KiB
Java
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 officePreviewType = ConfigConstants.getOfficePreviewType();
|
|
private String tifPreviewType;
|
|
|
|
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 FileAttribute(FileType type, String suffix, String name, String url, String officePreviewType, String tifPreviewType) {
|
|
this.type = type;
|
|
this.suffix = suffix;
|
|
this.name = name;
|
|
this.url = url;
|
|
this.officePreviewType = officePreviewType;
|
|
this.tifPreviewType = tifPreviewType;
|
|
}
|
|
|
|
public String getFileKey() {
|
|
return fileKey;
|
|
}
|
|
|
|
public void setFileKey(String fileKey) {
|
|
this.fileKey = fileKey;
|
|
}
|
|
|
|
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 String getTifPreviewType() {
|
|
return tifPreviewType;
|
|
}
|
|
|
|
public void setTifPreviewType(String previewType) {
|
|
this.tifPreviewType = previewType;
|
|
}
|
|
|
|
}
|