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