using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; // // This is here so CodeMaid doesn't reorganize this document // namespace EgwCoreLib.Lux.Data.DbModel.Production { /// /// Classe che definisce un piano di produzione (PODL con + articoli) prima che diventi 1/+ ODL/Batch (uno per impianto) /// Può contenere più ProductionAssign /// [Table("production_planner")] public class ProductionPlannerModel { [Key] public int ProdPlannerID { get; set; } /// /// Elenco delle assegnazioni dei record ProdAssign incluse /// public List ListProdAssignID { get; set; } = new(); /// /// Num parts complessivamente incluse /// public int NumParts { get; set; } = 0; /// /// Tempo stimato complessivo /// public int EstimTime { get; set; } = 0; } }