package com.platform.entities; public class MyFileEntity { private String fileName; private String lastTime; private String filePath; /** * @return the fileName */ public String getFileName() { return fileName; } /** * @param fileName the fileName to set */ public void setFileName(String fileName) { this.fileName = fileName; } /** * @return the lastTime */ public String getLastTime() { return lastTime; } /** * @param lastTime the lastTime to set */ public void setLastTime(String lastTime) { this.lastTime = lastTime; } /** * @return the filePath */ public String getFilePath() { return filePath; } /** * @param filePath the filePath to set */ public void setFilePath(String filePath) { this.filePath = filePath; } }