Files

60 lines
1.5 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DbModels
{
/// <summary>
/// Classe gestione item temporaneo x setup KIT di lavorazione
/// </summary>
[Table("WipSetupKit")]
public class WipSetupKitModel
{
#region Public Properties
/// <summary>
/// Ticket composizione KIT
/// </summary>
[MaxLength(50)]
public string KeyFilt { get; set; } = "-";
/// <summary>
/// Cod esterno Ordine (KeyRif Ordine ERP)
/// </summary>
[MaxLength(50)]
public string CodOrd { get; set; } = "";
/// <summary>
/// IdxPODL di origine
/// </summary>
public int IdxPODL { get; set; } = 0;
/// <summary>
/// Codice Articolo
/// </summary>
[MaxLength(50)]
public string CodArt { get; set; } = "";
/// <summary>
/// Descrizione Articolo
/// </summary>
[MaxLength(250)]
public string DescArt { get; set; } = "";
/// <summary>
/// Quantità articoli dell'Ordine
/// </summary>
public int Qta { get; set; } = 0;
/// <summary>
/// DataOra inserimento record
/// </summary>
public DateTime DataIns { get; set; } = DateTime.Now;
#endregion Public Properties
}
}