28 lines
829 B
C#
28 lines
829 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class TurniParetoOdl
|
|
{
|
|
#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? IdxOdl { get; set; }
|
|
public int IdxStato { get; set; }
|
|
public string KeyRichiesta { get; set; }
|
|
public double? TotPeriodo { get; set; }
|
|
public int? TotPz { get; set; }
|
|
public string Turno { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |