1 package org.javabb.vo; 2 3 import java.io.Serializable ; 4 import java.util.List ; 5 6 21 22 25 30 public class Category extends VOObject implements Serializable { 31 32 33 private String nameCategory; 34 35 36 private Integer catOrder; 37 38 39 private List foruns; 40 41 44 public Long getIdCategory() { 45 return getId(); 46 } 47 48 51 public void setIdCategory(Long id) { 52 setId(id); 53 } 54 55 58 public String getNameCategory() { 59 return nameCategory; 60 } 61 62 65 public void setNameCategory(String nameCategory) { 66 this.nameCategory = nameCategory; 67 } 68 69 72 public List getForuns() { 73 return foruns; 74 } 75 76 79 public void setForuns(List foruns) { 80 this.foruns = foruns; 81 } 82 83 86 public Integer getCatOrder() { 87 return catOrder; 88 } 89 90 93 public void setCatOrder(Integer catOrder) { 94 this.catOrder = catOrder; 95 } 96 } 97 | Popular Tags |