shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
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
package com.walker.support.es;
 
public class Attachment {
 
    private String id;  // 文件唯一编号
    private String fileName;
 
    private byte[] fileContent;
 
    private String fileContentType;
 
    private long fileSize = 0;
 
    public long getFileSize() {
        return fileSize;
    }
 
    public void setFileSize(long fileSize) {
        this.fileSize = fileSize;
    }
 
 
    public String getFileContentType() {
        return fileContentType;
    }
 
    public void setFileContentType(String fileContentType) {
        this.fileContentType = fileContentType;
    }
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getFileName() {
        return fileName;
    }
 
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
 
    public byte[] getFileContent() {
        return fileContent;
    }
 
    public void setFileContent(byte[] fileContent) {
        this.fileContent = fileContent;
    }
 
 
    @Override
    public String toString(){
        return new StringBuilder("Attachment[id=").append(id)
                .append(", name=").append(this.fileName)
                .append(", size=").append(this.fileSize)
                .append(", contentType=").append(this.getFileContentType())
                .append("]").toString();
    }
}