Files
mapo-core/MP.Data/DatabaseModels/Odl.cs
T
2021-05-17 13:33:13 +02:00

27 lines
856 B
C#

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