Aggiunto controller al DB di base x MoonPro (no stats)

This commit is contained in:
Samuele Locatelli
2022-04-13 08:20:42 +02:00
parent 1848fef640
commit f28f7ee815
7 changed files with 400 additions and 8 deletions
+36
View File
@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
namespace MP.Data.DatabaseModels
{
public partial class MappaStatoExpl
{
public int RowNum { get; set; }
public DateTime? LastUpdate { get; set; }
public string IdxMacchina { get; set; }
public string CodMacchina { get; set; }
public string Nome { get; set; }
public string Url { get; set; }
public int? IdxOdl { get; set; }
public string CodArticolo { get; set; }
public string Disegno { get; set; }
public int? NumPezzi { get; set; }
public decimal? Tcassegnato { get; set; }
public DateTime? DataInizioOdl { get; set; }
public string Semaforo { get; set; }
public int? IdxStato { get; set; }
public string DescrizioneStato { get; set; }
public double? Durata { get; set; }
public int? PezziProd { get; set; }
public int? PezziConf { get; set; }
public decimal? TempoOn { get; set; }
public decimal? TempoAuto { get; set; }
public decimal? TempoRun { get; set; }
public decimal? Tcmedio { get; set; }
public decimal? Tclav { get; set; }
public decimal? Tceff { get; set; }
public decimal? TcmedioRt { get; set; }
public decimal? TclavRt { get; set; }
public decimal? TceffRt { get; set; }
}
}