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.
118 lines
2.3 KiB
118 lines
2.3 KiB
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package db.entidades;
|
|
|
|
import java.sql.Date;
|
|
import java.util.Vector;
|
|
|
|
/**
|
|
*
|
|
* @author lluis
|
|
*/
|
|
public class PlanoActuacao {
|
|
private Integer id;
|
|
private Integer estabelecimento_id;
|
|
private Integer estado;
|
|
private String descricao;
|
|
private Vector<Risco> riscos;
|
|
|
|
//
|
|
private Date data_visita;
|
|
private Integer tecnico_hs_id;
|
|
private Integer fase;
|
|
private String fase_nome;
|
|
private String tecnico_hs_nome;
|
|
private String loja_nome;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Integer getEstabelecimento_id() {
|
|
return estabelecimento_id;
|
|
}
|
|
|
|
public void setEstabelecimento_id(Integer estabelecimento_id) {
|
|
this.estabelecimento_id = estabelecimento_id;
|
|
}
|
|
|
|
public Integer getEstado() {
|
|
return estado;
|
|
}
|
|
|
|
public void setEstado(Integer estado) {
|
|
this.estado = estado;
|
|
}
|
|
|
|
public String getDescricao() {
|
|
return descricao;
|
|
}
|
|
|
|
public void setDescricao(String descricao) {
|
|
this.descricao = descricao;
|
|
}
|
|
|
|
public Vector<Risco> getRiscos() {
|
|
return riscos;
|
|
}
|
|
|
|
public void setRiscos(Vector<Risco> riscos) {
|
|
this.riscos = riscos;
|
|
}
|
|
|
|
public Date getData_visita() {
|
|
return data_visita;
|
|
}
|
|
|
|
public void setData_visita(Date data_visita) {
|
|
this.data_visita = data_visita;
|
|
}
|
|
|
|
public Integer getTecnico_hs_id() {
|
|
return tecnico_hs_id;
|
|
}
|
|
|
|
public void setTecnico_hs_id(Integer tecnico_hs_id) {
|
|
this.tecnico_hs_id = tecnico_hs_id;
|
|
}
|
|
|
|
public Integer getFase() {
|
|
return fase;
|
|
}
|
|
|
|
public void setFase(Integer fase) {
|
|
this.fase = fase;
|
|
}
|
|
|
|
public String getFase_nome() {
|
|
return fase_nome;
|
|
}
|
|
|
|
public void setFase_nome(String fase_nome) {
|
|
this.fase_nome = fase_nome;
|
|
}
|
|
|
|
public String getTecnico_hs_nome() {
|
|
return tecnico_hs_nome;
|
|
}
|
|
|
|
public void setTecnico_hs_nome(String tecnico_hs_nome) {
|
|
this.tecnico_hs_nome = tecnico_hs_nome;
|
|
}
|
|
|
|
public String getLoja_nome() {
|
|
return loja_nome;
|
|
}
|
|
|
|
public void setLoja_nome(String loja_nome) {
|
|
this.loja_nome = loja_nome;
|
|
}
|
|
}
|