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.
62 lines
1.1 KiB
62 lines
1.1 KiB
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package db.entidades;
|
|
|
|
import java.util.List;
|
|
import java.util.Vector;
|
|
|
|
/**
|
|
*
|
|
* @author lluis
|
|
*/
|
|
public class Medida {
|
|
private Integer id;
|
|
private Integer risco_id;
|
|
private String descricao;
|
|
private String activa;
|
|
private List<PostoTrabalho> postos;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getDescricao() {
|
|
return descricao;
|
|
}
|
|
|
|
public void setDescricao(String descricao) {
|
|
this.descricao = descricao;
|
|
}
|
|
|
|
public String getActiva() {
|
|
return activa;
|
|
}
|
|
|
|
public void setActiva(String activa) {
|
|
this.activa = activa;
|
|
}
|
|
|
|
public Integer getRisco_id() {
|
|
return risco_id;
|
|
}
|
|
|
|
public void setRisco_id(Integer risco_id) {
|
|
this.risco_id = risco_id;
|
|
}
|
|
|
|
public List<PostoTrabalho> getPostos() {
|
|
return postos;
|
|
}
|
|
|
|
public void setPostos(List<PostoTrabalho> postos) {
|
|
this.postos = postos;
|
|
}
|
|
}
|