22 lines
617 B
C#
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; }
|
|
}
|
|
}
|