File size: 3,531 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package beans;
/**
*
* @author Juan Carlos
*/
public class Reporte {
private Integer idReporte;
private Float latitud;
private Float longitud;
private Integer estado;
private Integer idConductor;
private String dictamen;
private String descripcion;
private String placasVehiculos;
private Integer idSiniestro;
private String hora;
private Integer resultado;
public Reporte() {
}
public Reporte(Float latitud, Float longitud, Integer estado) {
this.latitud = latitud;
this.longitud = longitud;
this.estado = estado;
}
public Reporte(Integer idReporte, Float latitud, Float longitud, Integer estado) {
this.idReporte = idReporte;
this.latitud = latitud;
this.longitud = longitud;
this.estado = estado;
}
public Integer getResultado() {
return resultado;
}
public void setResultado(Integer resultado) {
this.resultado = resultado;
}
/**
* @return the idReporte
*/
public Integer getIdReporte() {
return idReporte;
}
/**
* @param idReporte the idReporte to set
*/
public void setIdReporte(Integer idReporte) {
this.idReporte = idReporte;
}
public Float getLatitud() {
return latitud;
}
public void setLatitud(Float latitud) {
this.latitud = latitud;
}
public Float getLongitud() {
return longitud;
}
public void setLongitud(Float longitud) {
this.longitud = longitud;
}
/**
* @return the estado
*/
public int getEstado() {
return estado;
}
/**
* @param estado the estado to set
*/
public void setEstado(int estado) {
this.estado = estado;
}
public int getIdConductor() {
return this.idConductor;
}
public void setIdConductor(int idConductor) {
this.idConductor = idConductor;
}
/**
* @return the dictamen
*/
public String getDictamen() {
return dictamen;
}
/**
* @param dictamen the dictamen to set
*/
public void setDictamen(String dictamen) {
this.dictamen = dictamen;
}
/**
* @return the descripcion
*/
public String getDescripcion() {
return descripcion;
}
/**
* @param descripcion the dictamen to set
*/
public void setDescripcion(String descripcion) {
this.descripcion = descripcion;
}
/**
* @return the placasVehiculos
*/
public String getPlacasVehiculos() {
return placasVehiculos;
}
/**
* @param placasVehiculos the placasVehiculos to set
*/
public void setPlacasVehiculos(String placasVehiculos) {
this.placasVehiculos = placasVehiculos;
}
/**
* @return the idSiniestro
*/
public Integer getIdSiniestro() {
return idSiniestro;
}
/**
* @param idSiniestro the idSiniestro to set
*/
public void setIdSiniestro(Integer idSiniestro) {
this.idSiniestro = idSiniestro;
}
/**
* @return the hora
*/
public String getHora() {
return hora;
}
/**
* @param hora the hora to set
*/
public void setHora(String hora) {
this.hora = hora;
}
}
|