Files
mapo-core/MP.Data/DatabaseModels/RegistroScartiKitModel.cs
T
Samuele Locatelli 71d986583b Fix update qty
2023-12-14 14:55:43 +01:00

38 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DatabaseModels
{
[Table("RegistroScartiKit")]
public partial class RegistroScartiKitModel
{
#region Public Properties
public string IdxMacchina { get; set; } = "";
public DateTime DataOra { get; set; } = DateTime.Now;
public string Causale { get; set; } = "";
public string CodArticoloKit { get; set; } = "";
public string CodArticolo { get; set; } = "";
public string Operatore { get; set; } = "";
public int Qta { get; set; } = 0;
public int QtaMax { get; set; } = 0;
public string Note { get; set; } = "";
public int MatrOpr { get; set; } = 0;
public DateTime? DataOraProdRec { get; set; } = null;
public string Descrizione { get; set; } = "";
public string cssClass { get; set; } = "";
public string icona { get; set; } = "";
public string DescArticolo { get; set; } = "";
public string Tipo { get; set; } = "";
#endregion Public Properties
}
}