Files
lux/EgwCoreLib.Lux.Data/DbModel/Production/ProductionItem2ODLModel.cs
T
2026-03-25 07:24:21 +01:00

33 lines
861 B
C#

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