}
@Override
public Categoria popularEntidade(ResultSet rs) throws Exception {
Categoria cat = new Categoria();
cat.setCodCategoria(rs.getInt("cod_categoria"));
cat.setDescricao(rs.getString("descricao"));
cat.setCategoriaMae(rs.getInt("categoria_mae"));
return cat;
}