27 lines
853 B
C#
27 lines
853 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class VDdbTurni
|
|
{
|
|
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 int PzPalletProd { get; set; }
|
|
public decimal? Durata { get; set; }
|
|
public int? PzProd { get; set; }
|
|
public string ClasseTempo { get; set; }
|
|
public string DescClasseTempo { get; set; }
|
|
public string Semaforo { get; set; }
|
|
public string SemColore { get; set; }
|
|
public string CodMacchina { get; set; }
|
|
public string DescMacchina { get; set; }
|
|
}
|
|
}
|