1 2 3 24 package com.geinuke.vo; 25 26 import java.io.Serializable ; 27 28 29 public class UploadFileVO implements Serializable { 30 protected int UFId=-1; 31 protected int EUID=-1; 32 protected String path=null; 33 protected String fileName=null; 34 protected long time=0; 35 public int getEUID() { 36 return EUID; 37 } 38 public void setEUID(int euid) { 39 EUID = euid; 40 } 41 public String getFileName() { 42 return fileName; 43 } 44 public void setFileName(String fileName) { 45 this.fileName = fileName; 46 } 47 public String getPath() { 48 return path; 49 } 50 public void setPath(String path) { 51 this.path = path; 52 } 53 public long getTime() { 54 return time; 55 } 56 public void setTime(long time) { 57 this.time = time; 58 } 59 public int getUFId() { 60 return UFId; 61 } 62 public void setUFId(int id) { 63 UFId = id; 64 } 65 } 66 | Popular Tags |