62 lines
1.5 KiB
C#
62 lines
1.5 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
|
|
{
|
|
[Table("JobRowItemList")]
|
|
public class JobRowItemModel
|
|
{
|
|
/// <summary>
|
|
/// ID del record
|
|
/// </summary>
|
|
[Key]
|
|
public int JobRowItemID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Fase del Ciclo di appartenenza
|
|
/// </summary>
|
|
public int JobRowID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indice della fase all'interno del Job
|
|
/// </summary>
|
|
public int Index { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// ID della fase realizzata
|
|
/// </summary>
|
|
public int ItemID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Descrizione della fase del Job
|
|
/// </summary>
|
|
public string Description { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Quantità per UM
|
|
/// </summary>
|
|
public double Qty { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// Navigazione su fasi ciclo
|
|
/// </summary>
|
|
[ForeignKey("JobRowID")]
|
|
public virtual JobRowModel JobRowNav { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Navigazione su Items
|
|
/// </summary>
|
|
[ForeignKey("ItemID")]
|
|
public virtual ItemModel ItemNav { get; set; } = null!;
|
|
|
|
}
|
|
}
|