Acabado excel, queda la parte de cofiguracion
This commit is contained in:
@@ -37,5 +37,29 @@ public partial class estadisticas
|
||||
|
||||
public double? numeroTrabajadores { get; set; }
|
||||
|
||||
public double? totalCosteAnual { get; set; }
|
||||
|
||||
public double? horasProduccion { get; set; }
|
||||
|
||||
public double? totalSupeficie { get; set; }
|
||||
|
||||
public double? costeHoraExternalizacion { get; set; }
|
||||
|
||||
public double? precioEncargo { get; set; }
|
||||
|
||||
public double? precioTrabajo { get; set; }
|
||||
|
||||
public string? tipoDocumento { get; set; }
|
||||
|
||||
public string? documento { get; set; }
|
||||
|
||||
public string? dato1 { get; set; }
|
||||
|
||||
public string? dato2 { get; set; }
|
||||
|
||||
public string? dato3 { get; set; }
|
||||
|
||||
public double? innovacion { get; set; }
|
||||
|
||||
public virtual simulaciones? idSimulacionNavigation { get; set; }
|
||||
}
|
||||
|
||||
19
bdHerramientaCACOA/db/estadisticasfactores.cs
Normal file
19
bdHerramientaCACOA/db/estadisticasfactores.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace bdHerramientaCACOA.db;
|
||||
|
||||
public partial class estadisticasfactores
|
||||
{
|
||||
public int idestadisticasFactores { get; set; }
|
||||
|
||||
public int? idsimulacion { get; set; }
|
||||
|
||||
public string? nombre { get; set; }
|
||||
|
||||
public double? coeficiente { get; set; }
|
||||
|
||||
public string? tipo { get; set; }
|
||||
|
||||
public virtual simulaciones? idsimulacionNavigation { get; set; }
|
||||
}
|
||||
21
bdHerramientaCACOA/db/estadisticasusos.cs
Normal file
21
bdHerramientaCACOA/db/estadisticasusos.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace bdHerramientaCACOA.db;
|
||||
|
||||
public partial class estadisticasusos
|
||||
{
|
||||
public int idestadisticaUsos { get; set; }
|
||||
|
||||
public int? idSimulacion { get; set; }
|
||||
|
||||
public double? superficie { get; set; }
|
||||
|
||||
public int? idUso { get; set; }
|
||||
|
||||
public int? idTipologia { get; set; }
|
||||
|
||||
public int? idIntervencion { get; set; }
|
||||
|
||||
public virtual simulaciones? idSimulacionNavigation { get; set; }
|
||||
}
|
||||
@@ -29,6 +29,10 @@ public partial class simulaciones
|
||||
|
||||
public virtual ICollection<estadisticas> estadisticas { get; set; } = new List<estadisticas>();
|
||||
|
||||
public virtual ICollection<estadisticasfactores> estadisticasfactores { get; set; } = new List<estadisticasfactores>();
|
||||
|
||||
public virtual ICollection<estadisticasusos> estadisticasusos { get; set; } = new List<estadisticasusos>();
|
||||
|
||||
public virtual usuarios idCodigoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ficheros idFicheroJSONNavigation { get; set; } = null!;
|
||||
|
||||
Reference in New Issue
Block a user