14 lines
588 B
C#
14 lines
588 B
C#
|
|
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
|
||
|
|
}
|
||
|
|
}
|