Files
mapo-core/MP.Data/DatabaseModels/ODL.cs
T
2021-06-23 13:15:00 +02:00

31 lines
989 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class ODL
{
#region Public Properties
public string CodArticolo { get; set; } = "";
public string CodArticoloParent { get; set; }
public DateTime? DataFine { get; set; }
public DateTime? DataInizio { get; set; }
public string DescArticolo { get; set; } = "";
public DateTime? DueDate { get; set; }
public string IdxMacchina { get; set; }
public int IdxOdl { get; set; }
public string KeyRichiesta { get; set; }
public string KeyRichiestaParent { get; set; }
public int NumPezzi { get; set; }
public int NumPezziEv { get; set; }
public int NumPezziRil { get; set; }
public int NumPezziSca { get; set; }
public int? PzPallet { get; set; }
public decimal Tcassegnato { get; set; }
#endregion Public Properties
}
}