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.
		
		
		
		
		
			
		
			
				
					
					
						
							72 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							72 lines
						
					
					
						
							1.2 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 Risco {
 | |
|     private Integer id;
 | |
|     private Integer plano_id;
 | |
|     private String descricao;
 | |
|     private String activo;
 | |
|     private Integer valor;
 | |
|     
 | |
|     private List<Medida> medidas;
 | |
| 
 | |
|     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 getActivo() {
 | |
|         return activo;
 | |
|     }
 | |
| 
 | |
|     public void setActivo(String activo) {
 | |
|         this.activo = activo;
 | |
|     }
 | |
| 
 | |
|     public Integer getPlano_id() {
 | |
|         return plano_id;
 | |
|     }
 | |
| 
 | |
|     public void setPlano_id(Integer plano_id) {
 | |
|         this.plano_id = plano_id;
 | |
|     }
 | |
| 
 | |
|     public Integer getValor() {
 | |
|         return valor;
 | |
|     }
 | |
| 
 | |
|     public void setValor(Integer valor) {
 | |
|         this.valor = valor;
 | |
|     }
 | |
| 
 | |
|     public List<Medida> getMedidas() {
 | |
|         return medidas;
 | |
|     }
 | |
| 
 | |
|     public void setMedidas(List<Medida> medidas) {
 | |
|         this.medidas = medidas;
 | |
|     }
 | |
| }
 |