1 2 23 package com.geinuke.vo; 24 25 import java.io.Serializable ; 26 27 28 public class CategoryVO implements Serializable { 29 30 31 public final static String CAT_NEWS="NEWS"; 32 public final static String CAT_DOWNLOADS="DOWNLOADS"; 33 public final static String CAT_FORUMS="FORUM"; 34 public final static String CAT_BLOG="BLOG"; 35 protected int catId=-1; 36 protected int precId=0; 37 protected String title=null; 38 protected String catType=null; 39 protected String description=null; 40 41 public int getCatId() { 42 return catId; 43 } 44 public void setCatId(int catId) { 45 this.catId = catId; 46 } 47 public String getCatType() { 48 return catType; 49 } 50 public void setCatType(String catType) { 51 this.catType = catType; 52 } 53 public String getDescription() { 54 return description; 55 } 56 public void setDescription(String description) { 57 this.description = description; 58 } 59 public int getPrecId() { 60 return precId; 61 } 62 public void setPrecId(int precId) { 63 this.precId = precId; 64 } 65 public String getTitle() { 66 return title; 67 } 68 public void setTitle(String title) { 69 this.title = title; 70 } 71 } 72 | Popular Tags |