1 2 23 package com.geinuke.vo; 24 25 import java.io.Serializable ; 26 27 28 public class BlockDBVO implements Serializable { 29 protected int id=0; 30 protected int idRole=0; 31 protected String path=null; 32 protected String name=null; 33 protected String des=null; 34 protected int roleLevel=0; 35 protected int pos=0; 36 protected int weight=0; 37 protected String title=null; 38 protected boolean active=false; 39 protected int skin=0; 40 protected boolean dbStored=false; 41 protected String content=""; 42 43 public int getId() { 44 45 return this.id; 46 } 47 48 public String getPath() { 49 50 return this.path; 51 } 52 53 54 public void setPath(String tit) { 55 this.path=tit; 56 57 } 58 59 60 public String getName() { 61 62 return this.name; 63 } 64 65 public int getPos() { 66 67 return this.pos; 68 } 69 70 71 public int getWeight() { 72 73 return this.weight; 74 } 75 76 public String getDescription() { 77 78 return this.des; 79 } 80 81 82 public void setDescription(String des) { 83 this.des = des; 84 } 85 public void setId(int id) { 86 this.id = id; 87 } 88 public void setName(String name) { 89 this.name = name; 90 } 91 public void setPos(int pos) { 92 this.pos = pos; 93 } 94 public void setWeight(int weight) { 95 this.weight = weight; 96 } 97 98 99 public int getIdRole() { 100 return idRole; 101 } 102 public void setIdRole(int idRole) { 103 this.idRole = idRole; 104 } 105 public boolean isActive() { 106 return active; 107 } 108 109 public boolean getActive() { 110 return active; 111 } 112 public void setActive(boolean visible) { 113 this.active = visible; 114 } 115 public int getRoleLevel() { 116 return roleLevel; 117 } 118 public void setRoleLevel(int roleLevel) { 119 this.roleLevel = roleLevel; 120 } 121 public String getTitle() { 122 return title; 123 } 124 public void setTitle(String title) { 125 this.title = title; 126 } 127 130 public int getSkin() { 131 return skin; 132 } 133 136 public void setSkin(int skin) { 137 this.skin = skin; 138 } 139 public boolean isDbStored() { 140 return dbStored; 141 } 142 public void setDbStored(boolean dbStored) { 143 this.dbStored = dbStored; 144 } 145 148 public String getContent() { 149 return content; 150 } 151 154 public void setContent(String content) { 155 this.content = content; 156 } 157 } 158 159 | Popular Tags |