forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
652 B
52 lines
652 B
package shst.medicina.fichasclinicas.beans;
|
|
|
|
public class DocumentoBean
|
|
{
|
|
private Integer id;
|
|
private String categoria;
|
|
private String detalhe;
|
|
private String tipo;
|
|
|
|
public Integer getId()
|
|
{
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id)
|
|
{
|
|
this.id = id;
|
|
}
|
|
|
|
public String getCategoria()
|
|
{
|
|
return categoria;
|
|
}
|
|
|
|
public void setCategoria(String categoria)
|
|
{
|
|
this.categoria = categoria;
|
|
}
|
|
|
|
public String getDetalhe()
|
|
{
|
|
return detalhe;
|
|
}
|
|
|
|
public void setDetalhe(String detalhe)
|
|
{
|
|
this.detalhe = detalhe;
|
|
}
|
|
|
|
public String getTipo()
|
|
{
|
|
return tipo;
|
|
}
|
|
|
|
public void setTipo(String tipo)
|
|
{
|
|
this.tipo = tipo;
|
|
}
|
|
|
|
|
|
}
|