yuxc
2025-01-15 9503c595d3508c80cbbacf6e69dca459771d250e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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 + '\'' +
                '}';
    }
}