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