Inizio definizione modelli x gestione produzoine/assegnazione
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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 PrdoAssignID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Ordine cui fa riferimento
|
||||
/// </summary>
|
||||
public int OrderRowID { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// Codice macchina di riferimento
|
||||
/// </summary>
|
||||
public string MachineCod { get; set; } = "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user