using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DatabaseModels { [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; } = ""; } }