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.
99 lines
2.1 KiB
99 lines
2.1 KiB
/*
|
|
* Trabalhador.java
|
|
*
|
|
* Created on September 26, 2007, 4:23 PM
|
|
*
|
|
* 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 Trabalhador implements Serializable
|
|
{
|
|
private Integer id;
|
|
private String nome;
|
|
private java.sql.Date data_nascimento;
|
|
private String funcao;
|
|
private java.sql.Date data_admissao;
|
|
private String numero_mecanografico;
|
|
private Integer estabelecimento_id;
|
|
private String estabelecimento;
|
|
|
|
|
|
/** Creates a new instance of Trabalhador */
|
|
public Trabalhador() {
|
|
}
|
|
|
|
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 java.sql.Date getData_nascimento() {
|
|
return data_nascimento;
|
|
}
|
|
|
|
public void setData_nascimento(java.sql.Date data_nascimento) {
|
|
this.data_nascimento = data_nascimento;
|
|
}
|
|
|
|
public String getFuncao() {
|
|
return funcao;
|
|
}
|
|
|
|
public void setFuncao(String funcao) {
|
|
this.funcao = funcao;
|
|
}
|
|
|
|
public java.sql.Date getData_admissao() {
|
|
return data_admissao;
|
|
}
|
|
|
|
public void setData_admissao(java.sql.Date data_admissao) {
|
|
this.data_admissao = data_admissao;
|
|
}
|
|
|
|
public String getNumero_mecanografico() {
|
|
return numero_mecanografico;
|
|
}
|
|
|
|
public void setNumero_mecanografico(String numero_mecanografico) {
|
|
this.numero_mecanografico = numero_mecanografico;
|
|
}
|
|
|
|
public String getEstabelecimento() {
|
|
return estabelecimento;
|
|
}
|
|
|
|
public void setEstabelecimento(String estabelecimento) {
|
|
this.estabelecimento = estabelecimento;
|
|
}
|
|
|
|
public Integer getEstabelecimento_id() {
|
|
return estabelecimento_id;
|
|
}
|
|
|
|
public void setEstabelecimento_id(Integer estabelecimento_id) {
|
|
this.estabelecimento_id = estabelecimento_id;
|
|
}
|
|
|
|
}
|