elkers
6 天以前 01136df34a1d8edb6972bbec725b656a602b83af
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
package com.nanjing.water.entity.dto;
 
public class UploadResultVo {
    /**
     * 文件id,传参后原样输出,前端比对文件用,无实际意义。
     */
    private String fileId;
    /**
     * 原始文件名称 传参后原样输出
     */
    private String name;
    /**
     * 新文件名称(需要保存数据库的虚拟路径)
     */
    private String newFileName;
    /**
     * 文件预览地址
     */
    private String newFileView;
    /**
     * 文件类型
     */
    private String fileType;
    /**
     * 文件媒体类型
     */
    private String contentType;
    /**
     * 文件大小(kb)
     */
    private Long size;
 
    public String getFileId() {
        return fileId;
    }
 
    public void setFileId(String fileId) {
        this.fileId = fileId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getNewFileName() {
        return newFileName;
    }
 
    public void setNewFileName(String newFileName) {
        this.newFileName = newFileName;
    }
 
    public String getNewFileView() {
        return newFileView;
    }
 
    public void setNewFileView(String newFileView) {
        this.newFileView = newFileView;
    }
 
    public String getFileType() {
        return fileType;
    }
 
    public void setFileType(String fileType) {
        this.fileType = fileType;
    }
 
    public String getContentType() {
        return contentType;
    }
 
    public void setContentType(String contentType) {
        this.contentType = contentType;
    }
 
    public Long getSize() {
        return size;
    }
 
    public void setSize(Long size) {
        this.size = size;
    }
}