Files
lux/EgwCoreLib.Lux.Data/DbModel/Production/ProductionPlannerModel.cs
T
2025-12-19 12:11:09 +01:00

25 lines
726 B
C#

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;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace EgwCoreLib.Lux.Data.DbModel.Production
{
/// <summary>
/// Classe che definisce un piano di produzione (PODL con + articoli) prima che diventi 1/+ ODL/Batch (uno per impianto)
/// Può contenere più ProductionAssign
/// </summary>
[Table("production_planner")]
public class ProductionPlannerModel
{
[Key]
public int ProdPlannerID { get; set; }
}
}