Modelli da scaffolding automatico (da rivedere)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Aaul
|
||||
{
|
||||
public string Azione { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Cal
|
||||
{
|
||||
public DateTime Giorno { get; set; }
|
||||
public bool? DoDdb { get; set; }
|
||||
public bool? DoTcr { get; set; }
|
||||
public bool? DoUl { get; set; }
|
||||
public bool? DoEcp { get; set; }
|
||||
public bool? DoRs { get; set; }
|
||||
public bool? DoOdl { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Config
|
||||
{
|
||||
public string Chiave { get; set; }
|
||||
public string Valore { get; set; }
|
||||
public string ValoreStd { get; set; }
|
||||
public string Note { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Ddb
|
||||
{
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int IdxStato { get; set; }
|
||||
public decimal DurataMinuti { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Ddb1
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public DateTime InizioStato { get; set; }
|
||||
public DateTime? FineStato { get; set; }
|
||||
public int IdxStato { get; set; }
|
||||
public double? DurataMinuti { get; set; }
|
||||
public string Value { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public double? TempoCicloBase { get; set; }
|
||||
public int? PzPalletProd { get; set; }
|
||||
public int? MatrOpr { get; set; }
|
||||
public string Pallet { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
public string ClasseTempo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class DdbTurni
|
||||
{
|
||||
public DateTime DataRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string Turno { get; set; }
|
||||
public int IdxStato { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public DateTime InizioStato { get; set; }
|
||||
public DateTime FineStato { get; set; }
|
||||
public string Pallet { get; set; }
|
||||
public int? PzPalletProd { get; set; }
|
||||
public decimal? TempoCicloBase { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
public string ClasseTempo { get; set; }
|
||||
public DateTime? DataTurnoInizio { get; set; }
|
||||
public DateTime? DataTurnoFine { get; set; }
|
||||
public long? DurataStato { get; set; }
|
||||
public DateTime InizioPeriodo { get; set; }
|
||||
public DateTime? FinePeriodo { get; set; }
|
||||
public long? DurataPeriodo { get; set; }
|
||||
public int TotPzProd { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class DdbTurniNew
|
||||
{
|
||||
public DateTime DataRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string Turno { get; set; }
|
||||
public int IdxStato { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public DateTime InizioStato { get; set; }
|
||||
public DateTime FineStato { get; set; }
|
||||
public string Pallet { get; set; }
|
||||
public int? PzPalletProd { get; set; }
|
||||
public decimal? TempoCicloBase { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
public string ClasseTempo { get; set; }
|
||||
public DateTime? DataTurnoInizio { get; set; }
|
||||
public DateTime? DataTurnoFine { get; set; }
|
||||
public long? DurataStato { get; set; }
|
||||
public DateTime InizioPeriodo { get; set; }
|
||||
public DateTime? FinePeriodo { get; set; }
|
||||
public long? DurataPeriodo { get; set; }
|
||||
public int TotPzProd { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class DdbTurniSummary
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public DateTime DataRif { get; set; }
|
||||
public string Turno { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int IdxStato { get; set; }
|
||||
public decimal TempoCicloBase { get; set; }
|
||||
public DateTime? Inizio { get; set; }
|
||||
public int PzPalletProd { get; set; }
|
||||
public decimal? Durata { get; set; }
|
||||
public int? PzProd { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class DdbTurniSummaryNew
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public DateTime DataRif { get; set; }
|
||||
public string Turno { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int IdxStato { get; set; }
|
||||
public decimal TempoCicloBase { get; set; }
|
||||
public DateTime? Inizio { get; set; }
|
||||
public int PzPalletProd { get; set; }
|
||||
public decimal? Durata { get; set; }
|
||||
public int? PzProd { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Ecp
|
||||
{
|
||||
public int IdxEcp { get; set; }
|
||||
public DateTime DataOraConf { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int PezziConf { get; set; }
|
||||
public int PezziScar { get; set; }
|
||||
public int PezziDaRilav { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
public string Nome { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Ecp1
|
||||
{
|
||||
public DateTime DataOraConf { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int MatrApp { get; set; }
|
||||
public DateTime DataFrom { get; set; }
|
||||
public DateTime DataTo { get; set; }
|
||||
public int PezziConf { get; set; }
|
||||
public int PezziScar { get; set; }
|
||||
public int PezziDaRilav { get; set; }
|
||||
public string CommessaEsterna { get; set; }
|
||||
public int TipoConf { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Kit
|
||||
{
|
||||
public string KeyKit { get; set; }
|
||||
public string KeyExtOrd { get; set; }
|
||||
public string CodArtParent { get; set; }
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Odl
|
||||
{
|
||||
public int IdxOdl { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public decimal Tcassegnato { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int NumPezzi { get; set; }
|
||||
public int NumPezziEv { get; set; }
|
||||
public int NumPezziSca { get; set; }
|
||||
public int NumPezziRil { get; set; }
|
||||
public DateTime? DataInizio { get; set; }
|
||||
public DateTime? DataFine { get; set; }
|
||||
public string KeyRichiestaParent { get; set; }
|
||||
public string CodArticoloParent { get; set; }
|
||||
public DateTime? DueDate { get; set; }
|
||||
public int? PzPallet { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Odl1
|
||||
{
|
||||
public int IdxOdl { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int NumPezzi { get; set; }
|
||||
public decimal Tcassegnato { get; set; }
|
||||
public DateTime? DataInizio { get; set; }
|
||||
public DateTime? DataFine { get; set; }
|
||||
public string Note { get; set; }
|
||||
public bool NeedAppr { get; set; }
|
||||
public string UserAppr { get; set; }
|
||||
public DateTime? DataAppr { get; set; }
|
||||
public decimal? TcrichAttr { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int PzPallet { get; set; }
|
||||
public bool Provvisorio { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public string CommessaAs400 { get; set; }
|
||||
public int ToAs400 { get; set; }
|
||||
public DateTime? DueDate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class R
|
||||
{
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string Causale { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
public string Note { get; set; }
|
||||
public int Qta { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
public string Nome { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class R1
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public DateTime DataOra { get; set; }
|
||||
public string Causale { get; set; }
|
||||
public int Qta { get; set; }
|
||||
public string Note { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public DateTime? DataOraProdRec { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Rc
|
||||
{
|
||||
public int IdxControllo { get; set; }
|
||||
public DateTime DataOra { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public bool EsitoOk { get; set; }
|
||||
public string Note { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Tally
|
||||
{
|
||||
public int N { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class TcStat
|
||||
{
|
||||
public string CodArticolo { get; set; }
|
||||
public string CodGruppo { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public decimal TcStat1 { get; set; }
|
||||
public int TcType { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Tcr
|
||||
{
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int PzProd { get; set; }
|
||||
public decimal? Tcmedio { get; set; }
|
||||
public decimal? Tcmin { get; set; }
|
||||
public decimal? Tcmax { get; set; }
|
||||
public decimal? Tc50p { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Tcr1
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public decimal Tcmedio { get; set; }
|
||||
public int PzProd { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public decimal Tcassegnato { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int PzPallet { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class TcrDay
|
||||
{
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int PzProd { get; set; }
|
||||
public decimal? Tcmedio { get; set; }
|
||||
public decimal? Tcmin { get; set; }
|
||||
public decimal? Tcmax { get; set; }
|
||||
public decimal? Tc50p { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class TcrDayTest
|
||||
{
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int PzProd { get; set; }
|
||||
public decimal? Tcmedio { get; set; }
|
||||
public decimal? Tcmin { get; set; }
|
||||
public decimal? Tcmax { get; set; }
|
||||
public decimal? Tc50p { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class TestJason
|
||||
{
|
||||
public DateTime Data { get; set; }
|
||||
public byte[] Json { get; set; }
|
||||
public int? Rows { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class Ul
|
||||
{
|
||||
public int IdxLog { get; set; }
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
public string Nome { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public string Azione { get; set; }
|
||||
public string Valore { get; set; }
|
||||
public decimal Qta { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VDdb
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public DateTime InizioStato { get; set; }
|
||||
public DateTime? FineStato { get; set; }
|
||||
public int IdxStato { get; set; }
|
||||
public double? DurataMinuti { get; set; }
|
||||
public string Value { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public double? TempoCicloBase { get; set; }
|
||||
public int? PzPalletProd { get; set; }
|
||||
public int? MatrOpr { get; set; }
|
||||
public string Pallet { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
public string ClasseTempo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VDdbLight
|
||||
{
|
||||
public string CodMacchina { get; set; }
|
||||
public string DescMacchina { get; set; }
|
||||
public DateTime InizioStato { get; set; }
|
||||
public string Stato { get; set; }
|
||||
public double? DurataMinuti { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public string Operatore { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VDdbLightOld
|
||||
{
|
||||
public string CodMacchina { get; set; }
|
||||
public string DescMacchina { get; set; }
|
||||
public DateTime InizioStato { get; set; }
|
||||
public string Stato { get; set; }
|
||||
public double? DurataMinuti { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public string Operatore { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VDdbTurni
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public DateTime DataRif { get; set; }
|
||||
public string Turno { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int IdxStato { get; set; }
|
||||
public decimal TempoCicloBase { get; set; }
|
||||
public int PzPalletProd { get; set; }
|
||||
public decimal? Durata { get; set; }
|
||||
public int? PzProd { get; set; }
|
||||
public string ClasseTempo { get; set; }
|
||||
public string DescClasseTempo { get; set; }
|
||||
public string Semaforo { get; set; }
|
||||
public string SemColore { get; set; }
|
||||
public string CodMacchina { get; set; }
|
||||
public string DescMacchina { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VEcp
|
||||
{
|
||||
public DateTime DataOraConf { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int MatrApp { get; set; }
|
||||
public DateTime DataFrom { get; set; }
|
||||
public DateTime DataTo { get; set; }
|
||||
public int PezziConf { get; set; }
|
||||
public int PezziScar { get; set; }
|
||||
public int PezziDaRilav { get; set; }
|
||||
public string CommessaEsterna { get; set; }
|
||||
public int TipoConf { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VEcp1
|
||||
{
|
||||
public int IdxEcp { get; set; }
|
||||
public DateTime DataOraConf { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodMacchina { get; set; }
|
||||
public string DescMacchina { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int PezziConf { get; set; }
|
||||
public int PezziScar { get; set; }
|
||||
public int PezziDaRilav { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
public string Nome { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VEcpExtended
|
||||
{
|
||||
public int IdxEcp { get; set; }
|
||||
public DateTime DataOraConf { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodMacchina { get; set; }
|
||||
public string DescMacchina { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int PezziConf { get; set; }
|
||||
public int PezziScar { get; set; }
|
||||
public int PezziDaRilav { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
public string Nome { get; set; }
|
||||
public decimal Tcassegnato { get; set; }
|
||||
public DateTime DueDate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VKit
|
||||
{
|
||||
public string KeyKit { get; set; }
|
||||
public string KeyExtOrd { get; set; }
|
||||
public string CodArtParent { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VOdl
|
||||
{
|
||||
public int IdxOdl { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int NumPezzi { get; set; }
|
||||
public decimal Tcassegnato { get; set; }
|
||||
public DateTime? DataInizio { get; set; }
|
||||
public DateTime? DataFine { get; set; }
|
||||
public string Note { get; set; }
|
||||
public bool NeedAppr { get; set; }
|
||||
public string UserAppr { get; set; }
|
||||
public DateTime? DataAppr { get; set; }
|
||||
public decimal? TcrichAttr { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int PzPallet { get; set; }
|
||||
public bool Provvisorio { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public string CommessaAs400 { get; set; }
|
||||
public int ToAs400 { get; set; }
|
||||
public DateTime? DueDate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VOdl1
|
||||
{
|
||||
public int IdxOdl { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public decimal Tcassegnato { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodMacchina { get; set; }
|
||||
public string DescMacchina { get; set; }
|
||||
public int NumPezzi { get; set; }
|
||||
public int NumPezziEv { get; set; }
|
||||
public int NumPezziSca { get; set; }
|
||||
public int NumPezziRil { get; set; }
|
||||
public DateTime? DataInizio { get; set; }
|
||||
public DateTime? DataFine { get; set; }
|
||||
public string KeyRichiestaParent { get; set; }
|
||||
public string CodArticoloParent { get; set; }
|
||||
public DateTime? DueDate { get; set; }
|
||||
public int? PzPallet { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VPodlNonChiusi
|
||||
{
|
||||
public int IdxPromessa { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public string KeyBcode { get; set; }
|
||||
public bool Attivabile { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public DateTime? DataInizio { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public string DescArticolo { get; set; }
|
||||
public string CodGruppo { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodMacchina { get; set; }
|
||||
public string Nome { get; set; }
|
||||
public int NumPezzi { get; set; }
|
||||
public decimal Tcassegnato { get; set; }
|
||||
public DateTime DueDate { get; set; }
|
||||
public int Priorita { get; set; }
|
||||
public int PzPallet { get; set; }
|
||||
public decimal? TotMinProg { get; set; }
|
||||
public decimal? TotOreProg { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VR
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public DateTime DataOra { get; set; }
|
||||
public string Causale { get; set; }
|
||||
public int Qta { get; set; }
|
||||
public string Note { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public DateTime? DataOraProdRec { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VR1
|
||||
{
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string Causale { get; set; }
|
||||
public string Descrizione { get; set; }
|
||||
public string Note { get; set; }
|
||||
public int Qta { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
public string Nome { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VRc
|
||||
{
|
||||
public int IdxControllo { get; set; }
|
||||
public DateTime DataOra { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public bool EsitoOk { get; set; }
|
||||
public string Note { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VTcStat
|
||||
{
|
||||
public string CodArticolo { get; set; }
|
||||
public string CodGruppo { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodMacchina { get; set; }
|
||||
public string DescMacchina { get; set; }
|
||||
public decimal TcStat { get; set; }
|
||||
public int TcType { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VTcr
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public decimal Tcmedio { get; set; }
|
||||
public int PzProd { get; set; }
|
||||
public int IdxOdl { get; set; }
|
||||
public decimal Tcassegnato { get; set; }
|
||||
public string KeyRichiesta { get; set; }
|
||||
public int PzPallet { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VTcr1
|
||||
{
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodMacchina { get; set; }
|
||||
public string DescMacchina { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int PzProd { get; set; }
|
||||
public decimal? Tcmedio { get; set; }
|
||||
public decimal? Tcmin { get; set; }
|
||||
public decimal? Tcmax { get; set; }
|
||||
public decimal? Tc50p { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VTcrDay
|
||||
{
|
||||
public DateTime? DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodMacchina { get; set; }
|
||||
public string DescMacchina { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public int PzProd { get; set; }
|
||||
public decimal? Tcmedio { get; set; }
|
||||
public decimal? Tcmin { get; set; }
|
||||
public decimal? Tcmax { get; set; }
|
||||
public decimal? Tc50p { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VUl
|
||||
{
|
||||
public int IdxLog { get; set; }
|
||||
public DateTime DataOraRif { get; set; }
|
||||
public string IdxMacchina { get; set; }
|
||||
public int MatrOpr { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
public string Nome { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public string Azione { get; set; }
|
||||
public string Valore { get; set; }
|
||||
public decimal Qta { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace MpDataLayer.DatabaseModels
|
||||
{
|
||||
public partial class VetoTc
|
||||
{
|
||||
public string IdxMacchina { get; set; }
|
||||
public string CodArticolo { get; set; }
|
||||
public bool? VetoTc1 { get; set; }
|
||||
public decimal SogliaTc { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -13,6 +13,10 @@
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.6" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="5.0.6" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.6" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.6">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
Reference in New Issue
Block a user