40 lines
1.1 KiB
C#
40 lines
1.1 KiB
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; }
|
|
|
|
/// <summary>
|
|
/// Elenco delle assegnazioni dei record ProdAssign incluse
|
|
/// </summary>
|
|
public List<int> ListProdAssignID { get; set; } = new();
|
|
|
|
/// <summary>
|
|
/// Num parts complessivamente incluse
|
|
/// </summary>
|
|
public int NumParts { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Tempo stimato complessivo
|
|
/// </summary>
|
|
public int EstimTime { get; set; } = 0;
|
|
}
|
|
}
|