Files
mapo-core/MP.Data/DatabaseModels/DdbTurniSummary.cs
T
2021-05-17 13:33:13 +02:00

22 lines
617 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class DdbTurniSummary
{
public string IdxMacchina { get; set; }
public DateTime DataRif { get; set; }
public string Turno { get; set; }
public string CodArticolo { get; set; }
public int IdxStato { get; set; }
public decimal TempoCicloBase { get; set; }
public DateTime? Inizio { get; set; }
public int PzPalletProd { get; set; }
public decimal? Durata { get; set; }
public int? PzProd { get; set; }
}
}