Files
mapo-core/MpDataLayer/DatabaseModels/Odl.cs
T
2021-05-15 17:02:29 +02:00

27 lines
860 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MpDataLayer.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; }
}
}