Files
mapo-core/MP.Data/DbModels/WipSetupKitModel.cs
T
Samuele Locatelli 71fc5a81d4 SPEC:
- fix gestione permessi x nagMan + check buttons
2025-04-16 17:44:34 +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
}
}