Skip to content

Instantly share code, notes, and snippets.

@HashRaygoza
Created May 9, 2020 19:33
Show Gist options
  • Select an option

  • Save HashRaygoza/deed17b0fa54c4e9ed31e0976d9ae9d6 to your computer and use it in GitHub Desktop.

Select an option

Save HashRaygoza/deed17b0fa54c4e9ed31e0976d9ae9d6 to your computer and use it in GitHub Desktop.
Datos del reporte de productos
package mx.ticom.autoreporte.vo;
import java.math.BigDecimal;
import java.util.Date;
import mx.ticom.autoreporte.anotaciones.ColumnaReporte;
public class DatosReporteProductos {
@ColumnaReporte(nombreColumna="Fecha del producto")
private Date fecha;
@ColumnaReporte(nombreColumna="Nombre Producto")
private String producto;
@ColumnaReporte(nombreColumna="Inventario a la fecha")
private Integer inventario;
@ColumnaReporte(nombreColumna="Cambio estadistico (%)")
private BigDecimal cambioEstadistico;
public Date getFecha() {
return fecha;
}
public void setFecha(Date fecha) {
this.fecha = fecha;
}
public String getProducto() {
return producto;
}
public void setProducto(String producto) {
this.producto = producto;
}
public Integer getInventario() {
return inventario;
}
public void setInventario(Integer inventario) {
this.inventario = inventario;
}
public BigDecimal getCambioEstadistico() {
return cambioEstadistico;
}
public void setCambioEstadistico(BigDecimal cambioEstadistico) {
this.cambioEstadistico = cambioEstadistico;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment