Continuación del módulo de reportes. -Backend

This commit is contained in:
2025-05-27 18:17:56 -03:00
parent 298bc0d094
commit cdd4d3e0f7
31 changed files with 1852 additions and 44 deletions

View File

@@ -0,0 +1,14 @@
namespace GestionIntegral.Api.Dtos.Reportes
{
public class DetalleDistribucionCanillaDto
{
public string Publicacion { get; set; } = string.Empty;
public string Canilla { get; set; } = string.Empty;
public int TotalCantSalida { get; set; }
public int TotalCantEntrada { get; set; }
public decimal TotalRendir { get; set; }
// 'Fecha' si es para SP_DistCanillasEntradaSalidaPubliFechaLiq
// y SP_DistCanillasAccEntradaSalidaPubliFechaLiq
public DateTime? Fecha { get; set; } // Hacemos nullable para adaptarlo
}
}