37 lines
989 B
C#
37 lines
989 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 assegnazione di produzione connettendo info relative a
|
|
/// - riga ordine
|
|
/// - macchine
|
|
/// - tags (item) assegnati)
|
|
/// </summary>
|
|
[Table("production_assign")]
|
|
public class ProductionAssignModel
|
|
{
|
|
[Key]
|
|
public int ProdAssignID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Ordine cui fa riferimento
|
|
/// </summary>
|
|
public int OrderRowID { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Codice plant di assegnazione
|
|
/// </summary>
|
|
public string ProdPlantCod { get; set; } = "";
|
|
}
|
|
}
|