package com.vci.pagemodel;
|
|
/**
|
* 文件预览的配置显示对象
|
* @author weidy
|
* @date 2021/5/20
|
*/
|
public class VciFilePreviewConfigVO implements java.io.Serializable{
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = 4364575881794580548L;
|
/**
|
* 文件的主键
|
*/
|
private String fileOids;
|
|
/**
|
* 系统的许可
|
*/
|
private String systemKey;
|
|
/**
|
* 预览的许可,根据系统许可和内置许可转换
|
*/
|
private String previewKey;
|
|
/**
|
* 失效时间
|
*/
|
private Long invalidTime;
|
|
/**
|
* 预览的路径
|
*/
|
private String previewSystemUrl;
|
|
public String getFileOids() {
|
return fileOids;
|
}
|
|
public void setFileOids(String fileOids) {
|
this.fileOids = fileOids;
|
}
|
|
public String getSystemKey() {
|
return systemKey;
|
}
|
|
public void setSystemKey(String systemKey) {
|
this.systemKey = systemKey;
|
}
|
|
public String getPreviewKey() {
|
return previewKey;
|
}
|
|
public void setPreviewKey(String previewKey) {
|
this.previewKey = previewKey;
|
}
|
|
public Long getInvalidTime() {
|
return invalidTime;
|
}
|
|
public void setInvalidTime(Long invalidTime) {
|
this.invalidTime = invalidTime;
|
}
|
|
public String getPreviewSystemUrl() {
|
return previewSystemUrl;
|
}
|
|
public void setPreviewSystemUrl(String previewSystemUrl) {
|
this.previewSystemUrl = previewSystemUrl;
|
}
|
|
@Override
|
public String toString() {
|
return "VciFilePreviewConfigVO{" +
|
"fileOids='" + fileOids + '\'' +
|
", systemKey='" + systemKey + '\'' +
|
", previewKey='" + previewKey + '\'' +
|
", invalidTime=" + invalidTime +
|
", previewSystemUrl='" + previewSystemUrl + '\'' +
|
'}';
|
}
|
}
|