- continuo implementazione gestione KIT
This commit is contained in:
Samuele Locatelli
2025-04-10 19:14:59 +02:00
parent 62fb0e38b3
commit d344b49ff0
32 changed files with 2952 additions and 262 deletions
+57
View File
@@ -0,0 +1,57 @@
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>
/// 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; }
/// <summary>
/// DataOra inserimento record
/// </summary>
public DateTime DataIns { get; set; } = DateTime.Now;
#endregion Public Properties
}
}