Created
May 9, 2020 19:33
-
-
Save HashRaygoza/deed17b0fa54c4e9ed31e0976d9ae9d6 to your computer and use it in GitHub Desktop.
Datos del reporte de productos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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