Files
mapo-core/MP.Data/DbModels/WipSetupKitModel.cs
T
Samuele Locatelli f6864e7c2e SPEC:
- Fix creazione istanze kit con codici PODL parent/child
2025-04-12 07:24:49 +02:00

64 lines
1.6 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 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
}
}