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.
48 lines
795 B
48 lines
795 B
/*
|
|
* TecnicoSaude.java
|
|
*
|
|
* Created on October 12, 2007, 11:00 AM
|
|
*
|
|
* To change this template, choose Tools | Template Manager
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package beans;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
*
|
|
* @author lluis
|
|
*/
|
|
public class TecnicoSaude implements Serializable
|
|
{
|
|
private Integer id;
|
|
private String nome;
|
|
|
|
/** Creates a new instance of TecnicoSaude */
|
|
public TecnicoSaude() {
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getNome() {
|
|
return nome;
|
|
}
|
|
|
|
public void setNome(String nome) {
|
|
this.nome = nome;
|
|
}
|
|
|
|
public String toString() {
|
|
return utils.Utils.unicodeToHTML(nome);
|
|
}
|
|
|
|
}
|