26 lines
736 B
C#
26 lines
736 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class TurniPareto
|
|
{
|
|
#region Public Properties
|
|
|
|
public string ClasseTempo { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public string CodMacchina { get; set; }
|
|
public DateTime DataRif { get; set; }
|
|
public string DescArticolo { get; set; }
|
|
public string Descrizione { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public int IdxStato { get; set; }
|
|
public double? TotPeriodo { get; set; }
|
|
public int? TotPz { get; set; }
|
|
public string Turno { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |