1 2 23 package com.geinuke.vo; 24 25 import java.io.Serializable ; 26 27 public class SessionVO implements Serializable { 28 protected String id=null; 29 protected int idR=-1; 30 protected int idU=-1; 31 protected long time=0; 32 public String getId() { 33 return id; 34 } 35 public void setId(String id) { 36 this.id = id; 37 } 38 public int getIdR() { 39 return idR; 40 } 41 public void setIdR(int idR) { 42 this.idR = idR; 43 } 44 public int getIdU() { 45 return idU; 46 } 47 public void setIdU(int idU) { 48 this.idU = idU; 49 } 50 public long getTime() { 51 return time; 52 } 53 public void setTime(long time) { 54 this.time = time; 55 } 56 } 57 | Popular Tags |