commit inicial
This commit is contained in:
parent
1af2eac1d9
commit
f1af0fc608
2
.project
2
.project
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>gecovip2_eedd_ra5</name>
|
||||
<name>gecovip2_eedd_991_ra5</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
|
||||
@ -1,37 +1,32 @@
|
||||
package org.lapaloma.gecovip.inm.vo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class Concepto {
|
||||
private int identificador;
|
||||
String nombre;
|
||||
String descripcion;
|
||||
private List<Gasto> listaGastos;
|
||||
|
||||
public List<Gasto> getListaGastos() {
|
||||
return listaGastos;
|
||||
}
|
||||
public void setListaGastos(List<Gasto> listaGastos) {
|
||||
this.listaGastos = listaGastos;
|
||||
}
|
||||
public int getIdentificador() {
|
||||
return identificador;
|
||||
}
|
||||
|
||||
public void setIdentificador(int identificador) {
|
||||
this.identificador = identificador;
|
||||
}
|
||||
|
||||
public String getNombre() {
|
||||
return nombre;
|
||||
}
|
||||
|
||||
public void setNombre(String nombre) {
|
||||
this.nombre = nombre;
|
||||
}
|
||||
|
||||
public String getDescripcion() {
|
||||
return descripcion;
|
||||
}
|
||||
|
||||
public void setDescripcion(String descripcion) {
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -7,38 +7,37 @@ public class CursoAcademico {
|
||||
private String nombre;
|
||||
private Date fechaInicio;
|
||||
private Date fechaFin;
|
||||
private int numeroPagina;
|
||||
|
||||
|
||||
public String getCodigo() {
|
||||
return codigo;
|
||||
}
|
||||
|
||||
public void setCodigo(String codigo) {
|
||||
this.codigo = codigo;
|
||||
}
|
||||
|
||||
public String getNombre() {
|
||||
return nombre;
|
||||
}
|
||||
|
||||
public void setNombre(String nombre) {
|
||||
this.nombre = nombre;
|
||||
}
|
||||
|
||||
public Date getFechaInicio() {
|
||||
return fechaInicio;
|
||||
}
|
||||
|
||||
public void setFechaInicio(Date fechaInicio) {
|
||||
this.fechaInicio = fechaInicio;
|
||||
}
|
||||
|
||||
public Date getFechaFin() {
|
||||
return fechaFin;
|
||||
}
|
||||
|
||||
public void setFechaFin(Date fechaFin) {
|
||||
this.fechaFin = fechaFin;
|
||||
}
|
||||
public int getNumeroPagina() {
|
||||
return numeroPagina;
|
||||
}
|
||||
public void setNumeroPagina(int numeroPagina) {
|
||||
this.numeroPagina = numeroPagina;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -4,58 +4,76 @@ import java.util.Date;
|
||||
|
||||
public class Gasto {
|
||||
private int identificador;
|
||||
private String observacion;
|
||||
private String cantidad;
|
||||
private int cantidad;
|
||||
private double precioUnidad;
|
||||
private Date fechaGasto;
|
||||
private Date fechaCreacion;
|
||||
private Date fechaModificacion;
|
||||
private Concepto concepto;
|
||||
private ProyectoCursoAcademico proyectoCursoAcademico;
|
||||
|
||||
public ProyectoCursoAcademico getProyectoCursoAcademico() {
|
||||
return proyectoCursoAcademico;
|
||||
}
|
||||
|
||||
public void setProyectoCursoAcademico(ProyectoCursoAcademico proyectoCursoAcademico) {
|
||||
this.proyectoCursoAcademico = proyectoCursoAcademico;
|
||||
}
|
||||
|
||||
public int getCantidad() {
|
||||
return cantidad;
|
||||
}
|
||||
|
||||
public void setCantidad(int cantidad) {
|
||||
this.cantidad = cantidad;
|
||||
}
|
||||
|
||||
public double getPrecioUnidad() {
|
||||
return precioUnidad;
|
||||
}
|
||||
|
||||
public void setPrecioUnidad(double precioUnidad) {
|
||||
this.precioUnidad = precioUnidad;
|
||||
}
|
||||
|
||||
public int getIdentificador() {
|
||||
return identificador;
|
||||
}
|
||||
|
||||
public void setIdentificador(int identificador) {
|
||||
this.identificador = identificador;
|
||||
}
|
||||
public String getObservacion() {
|
||||
return observacion;
|
||||
}
|
||||
public void setObservacion(String observacion) {
|
||||
this.observacion = observacion;
|
||||
}
|
||||
public String getCantidad() {
|
||||
return cantidad;
|
||||
}
|
||||
public void setCantidad(String cantidad) {
|
||||
this.cantidad = cantidad;
|
||||
}
|
||||
|
||||
public Date getFechaCreacion() {
|
||||
return fechaCreacion;
|
||||
}
|
||||
|
||||
public void setFechaCreacion(Date fechaCreacion) {
|
||||
this.fechaCreacion = fechaCreacion;
|
||||
}
|
||||
|
||||
public Date getFechaModificacion() {
|
||||
return fechaModificacion;
|
||||
}
|
||||
|
||||
public void setFechaModificacion(Date fechaModificacion) {
|
||||
this.fechaModificacion = fechaModificacion;
|
||||
}
|
||||
|
||||
public Concepto getConcepto() {
|
||||
return concepto;
|
||||
}
|
||||
|
||||
public void setConcepto(Concepto concepto) {
|
||||
this.concepto = concepto;
|
||||
}
|
||||
|
||||
public Date getFechaGasto() {
|
||||
return fechaGasto;
|
||||
}
|
||||
|
||||
public void setFechaGasto(Date fechaGasto) {
|
||||
this.fechaGasto = fechaGasto;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -4,57 +4,76 @@ import java.util.Date;
|
||||
|
||||
public class Ingreso {
|
||||
private int identificador;
|
||||
private String cantidad;
|
||||
private int cantidad;
|
||||
private String observacion;
|
||||
private Date fechaIngreso;
|
||||
private Date fechaCreacion;
|
||||
private Date fechaModificacion;
|
||||
private Patrocinador patrocinador;
|
||||
private ProyectoInstitutoCurso proyectoInstitutoCurso;
|
||||
|
||||
|
||||
private ProyectoCursoAcademico proyectoInstitutoCurso;
|
||||
|
||||
public int getIdentificador() {
|
||||
return identificador;
|
||||
}
|
||||
|
||||
public void setIdentificador(int identificador) {
|
||||
this.identificador = identificador;
|
||||
}
|
||||
public String getCantidad() {
|
||||
|
||||
public int getCantidad() {
|
||||
return cantidad;
|
||||
}
|
||||
public void setCantidad(String cantidad) {
|
||||
|
||||
public void setCantidad(int cantidad) {
|
||||
this.cantidad = cantidad;
|
||||
}
|
||||
|
||||
public String getObservacion() {
|
||||
return observacion;
|
||||
}
|
||||
|
||||
public void setObservacion(String observacion) {
|
||||
this.observacion = observacion;
|
||||
}
|
||||
|
||||
public Date getFechaIngreso() {
|
||||
return fechaIngreso;
|
||||
}
|
||||
|
||||
public void setFechaIngreso(Date fechaIngreso) {
|
||||
this.fechaIngreso = fechaIngreso;
|
||||
}
|
||||
|
||||
public Date getFechaCreacion() {
|
||||
return fechaCreacion;
|
||||
}
|
||||
|
||||
public void setFechaCreacion(Date fechaCreacion) {
|
||||
this.fechaCreacion = fechaCreacion;
|
||||
}
|
||||
|
||||
public Date getFechaModificacion() {
|
||||
return fechaModificacion;
|
||||
}
|
||||
|
||||
public void setFechaModificacion(Date fechaModificacion) {
|
||||
this.fechaModificacion = fechaModificacion;
|
||||
}
|
||||
|
||||
public Patrocinador getPatrocinador() {
|
||||
return patrocinador;
|
||||
}
|
||||
|
||||
public void setPatrocinador(Patrocinador patrocinador) {
|
||||
this.patrocinador = patrocinador;
|
||||
}
|
||||
public ProyectoInstitutoCurso getProyectoInstitutoCurso() {
|
||||
|
||||
public ProyectoCursoAcademico getProyectoInstitutoCurso() {
|
||||
return proyectoInstitutoCurso;
|
||||
}
|
||||
public void setProyectoInstitutoCurso(ProyectoInstitutoCurso proyectoInstitutoCurso) {
|
||||
|
||||
public void setProyectoInstitutoCurso(ProyectoCursoAcademico proyectoInstitutoCurso) {
|
||||
this.proyectoInstitutoCurso = proyectoInstitutoCurso;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -2,9 +2,9 @@ package org.lapaloma.gecovip.inm.vo;
|
||||
|
||||
public class Proyecto {
|
||||
private int identificador;
|
||||
public String nombre;
|
||||
protected String descripcion;
|
||||
String urlLogo;
|
||||
private String nombre;
|
||||
private String descripcion;
|
||||
private String urlLogo;
|
||||
|
||||
|
||||
public int getIdentificador() {
|
||||
|
||||
@ -2,7 +2,7 @@ package org.lapaloma.gecovip.inm.vo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class ProyectoInstitutoCurso {
|
||||
public class ProyectoCursoAcademico {
|
||||
private Proyecto proyecto;
|
||||
private CursoAcademico cursoAcademico;
|
||||
private List<Gasto> listaGastos;
|
||||
Loading…
Reference in New Issue
Block a user