package com.qxueyou.scc.base.model; public class FileMeta { private String fileName ; private String fileSize ; private String fileType ; private String fileId ; private String path ; public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getFileSize() { return fileSize; } public void setFileSize(String fileSize) { this.fileSize = fileSize; } public String getFileType() { return fileType; } public void setFileType(String fileType) { this.fileType = fileType; } public String getFileId() { return fileId; } public void setFileId(String fileId) { this.fileId = fileId; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } }