Files
mapo-core/MP.Data/DbModels/StatoMacchineModel.cs

26 lines
838 B
C#

using System;
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.DbModels
{
[Table("StatoMacchine")]
public partial class StatoMacchineModel
{
[Key]
public string IdxMacchina { get; set; } = "NA";
public int IdxStato { get; set; } = 0;
public DateTime InizioStato { get; set; } = DateTime.Now;
public string Value { get; set; } = "";
public string CodArticolo { get; set; } = "";
public double TempoCicloBase { get; set; } = 0;
public int PzPalletProd { get; set; } = 0;
public int MatrOpr { get; set; } = 0;
public string pallet { get; set; } = "";
}
}