//
// This is here so CodeMaid doesn't reorganize this document
//
namespace EgwCoreLib.Lux.Data.DbModel.Production
{
///
/// Tabella delle fasi di lavorazione x ogni item da produrre
///
[Table("production_item2odl")]
public class ProductionItem2ODLModel
{
///
/// Link verso ITEM
///
public int ProdItemID { get; set; }
public ProductionItemModel ProductionItemNav { get; set; } = null!;
///
/// Link verso ODL
///
public int ProdODLID { get; set; }
public ProductionODLModel ProductionODLNav { get; set; } = null!;
///
/// DataOra assegnazione
///
public DateTime DtAssign { get; set; }
}
}