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.

40 lines
474 B

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package db.entidades;
/**
*
* @author dneves
*/
public class EstadoMedida
{
private Integer id;
private String descricao;
public Integer getId()
{
return this.id;
}
public void setId( Integer id )
{
this.id = id;
}
public String getDescricao()
{
return this.descricao;
}
public void setDescricao( String desc )
{
this.descricao = desc;
}
}