66 lines
1.5 KiB
C#
66 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdHerramientaCACOA.db;
|
|
|
|
public partial class estadisticas
|
|
{
|
|
public int idEstadistica { get; set; }
|
|
|
|
public int? idSimulacion { get; set; }
|
|
|
|
public double? costeDirecto { get; set; }
|
|
|
|
public double? costeIndirecto { get; set; }
|
|
|
|
public double? costeVariable { get; set; }
|
|
|
|
public double? costeHoraDespachoProf { get; set; }
|
|
|
|
public double? totalFases { get; set; }
|
|
|
|
public double? horasTPEDocumentacion { get; set; }
|
|
|
|
public double? horasTPEDireccionObra { get; set; }
|
|
|
|
public double? horasTPE { get; set; }
|
|
|
|
public double? porcentajeExternalizacion { get; set; }
|
|
|
|
public double? plazoPresentacion { get; set; }
|
|
|
|
public double? costeProduccion { get; set; }
|
|
|
|
public double? totalOtrosTrabajos { get; set; }
|
|
|
|
public double? porcentajeBeneficio { get; set; }
|
|
|
|
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; }
|
|
}
|