ludc
2024-12-04 e405b861b9521f5ea38c5402203a5b05988f9de2
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
package com.vci.query;
 
/**
 * 图片组件的查询对象
 * @author weidy
 * @date 2021/3/11
 */
public class FileImageViewerQuery implements java.io.Serializable{
 
    /**
     * 序列化
     */
    private static final long serialVersionUID = 876530566276018545L;
    /**
     * 业务类型
     */
    private String btmType;
 
    /**
     * 图片显示的方式
     */
    private String imageType;
 
    /**
     * 文件的主键
     */
    private String fileOid;
 
    /**
     * 文件的路径
     */
    private String filePath;
 
    public String getBtmType() {
        return btmType;
    }
 
    public void setBtmType(String btmType) {
        this.btmType = btmType;
    }
 
    public String getImageType() {
        return imageType;
    }
 
    public void setImageType(String imageType) {
        this.imageType = imageType;
    }
 
    public String getFileOid() {
        return fileOid;
    }
 
    public void setFileOid(String fileOid) {
        this.fileOid = fileOid;
    }
 
    public String getFilePath() {
        return filePath;
    }
 
    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }
 
    @Override
    public String toString() {
        return "FileImageViewerQuery{" +
                "btmType='" + btmType + '\'' +
                ", imageType='" + imageType + '\'' +
                ", fileOid='" + fileOid + '\'' +
                ", filePath='" + filePath + '\'' +
                '}';
    }
}