Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
package beans;
/**
*
* @author Daniel Escamilla
*/
import java.sql.Date;
public class ReporteResumido {
private Integer idReporte;
private String hora;
private String numPlacas;
private Integer estado;
public ReporteResumido(Integer idReporte, String hora, String numPlacas, Integer estado) {
this.idReporte = idReporte;
this.hora = hora;
this.numPlacas = numPlacas;
this.estado = estado;
}
public ReporteResumido() {
}
public Integer getIdReporte() {
return idReporte;
}
public void setIdReporte(Integer idReporte) {
this.idReporte = idReporte;
}
public String getHora() {
return hora;
}
public void setHora(String hora) {
this.hora = hora;
}
public String getNumPlacas() {
return numPlacas;
}
public void setNumPlacas(String numPlacas) {
this.numPlacas = numPlacas;
}
public Integer getEstado() {
return estado;
}
public void setEstado(Integer estado) {
this.estado = estado;
}
}