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(); } }