SPEC:
- continuo implementazione gestione KIT
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user