Files
HerramientaCASA/bdHerramientaCACOA/db/enumeraciones.cs
Perea c1cc98993f agregado puntos de informacion
agregado tabla estadisticas
2025-09-08 14:12:02 +02:00

52 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
namespace bdHerramientaCACOA.db;
public partial class enumeraciones
{
public int idEnumeracion { get; set; }
public int? idGrupoEnumeracion { get; set; }
public string Codigo { get; set; } = null!;
public string Descripcion { get; set; } = null!;
public string? ValorAlfabetico1 { get; set; }
public string? ValorAlfabetico2 { get; set; }
public double? ValorNumerico1 { get; set; }
public double? ValorNumerico2 { get; set; }
public string? ValorAlfabetico3 { get; set; }
public string? ValorAlfabetico4 { get; set; }
public string? ValorAlfabeticoLargo { get; set; }
public DateTime? Fecha1 { get; set; }
public DateTime? Fecha2 { get; set; }
public int? Orden { get; set; }
public bool Oculto { get; set; }
public virtual ICollection<conveniocolectivo> conveniocolectivo { get; set; } = new List<conveniocolectivo>();
public virtual ICollection<factorescorreccion> factorescorreccion { get; set; } = new List<factorescorreccion>();
public virtual ICollection<ficheros> ficheros { get; set; } = new List<ficheros>();
public virtual gruposenumeraciones? idGrupoEnumeracionNavigation { get; set; }
public virtual ICollection<simulaciones> simulaciones { get; set; } = new List<simulaciones>();
public virtual ICollection<tipologias> tipologias { get; set; } = new List<tipologias>();
public virtual ICollection<tipoproyectos> tipoproyectos { get; set; } = new List<tipoproyectos>();
}