Continuación de CRUDs e inicio de Reportes.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace GestionIntegral.Api.Dtos.Reportes
|
||||
{
|
||||
public class ExistenciaPapelDto
|
||||
{
|
||||
public string TipoBobina { get; set; } = string.Empty;
|
||||
public int? BobinasEnStock { get; set; } // Puede ser 0 si no hay
|
||||
public int? TotalKilosEnStock { get; set; } // Puede ser 0
|
||||
public int? ConsumoAcumulado { get; set; } // Puede ser 0
|
||||
public int? PromedioDiasDisponibles { get; set; } // Puede ser null si no hay consumo o stock
|
||||
public DateTime? FechaEstimacionFinStock { get; set; } // Puede ser null
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user