70 lines
2.2 KiB
C#
70 lines
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdGrupoSanchoToro.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class enumeraciones
|
|
{
|
|
public int idEnumeracion { get; set; }
|
|
|
|
public int idGrupoEnumeracion { get; set; }
|
|
|
|
public string? Codigo { get; set; }
|
|
|
|
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 int? Orden { get; set; }
|
|
|
|
public bool Oculto { get; set; }
|
|
|
|
public string? ValorAlfabetico3 { get; set; }
|
|
|
|
public string? ValorAlfabetico4 { get; set; }
|
|
|
|
public string? ValorAlfabeticoLargo { get; set; }
|
|
|
|
public double? ValorNumerico3 { get; set; }
|
|
|
|
public double? ValorNumerico4 { get; set; }
|
|
|
|
public DateTime? FechaBaja { get; set; }
|
|
|
|
public DateTime? Fecha1 { get; set; }
|
|
|
|
public DateTime? Fecha2 { get; set; }
|
|
|
|
public virtual ICollection<cuentas> cuentas { get; set; } = new List<cuentas>();
|
|
|
|
public virtual ICollection<detallesfacturas> detallesfacturas { get; set; } = new List<detallesfacturas>();
|
|
|
|
public virtual ICollection<detallesfacturasrecibidas> detallesfacturasrecibidas { get; set; } = new List<detallesfacturasrecibidas>();
|
|
|
|
public virtual ICollection<documentospresupuestos> documentospresupuestos { get; set; } = new List<documentospresupuestos>();
|
|
|
|
public virtual ICollection<entidades> entidades { get; set; } = new List<entidades>();
|
|
|
|
public virtual ICollection<facturasrecibidas> facturasrecibidas { get; set; } = new List<facturasrecibidas>();
|
|
|
|
public virtual ICollection<ficheros> ficheros { get; set; } = new List<ficheros>();
|
|
|
|
public virtual gruposenumeraciones idGrupoEnumeracionNavigation { get; set; } = null!;
|
|
|
|
public virtual ICollection<plantillas> plantillas { get; set; } = new List<plantillas>();
|
|
|
|
public virtual ICollection<procesos> procesosidSubtipoNavigation { get; set; } = new List<procesos>();
|
|
|
|
public virtual ICollection<procesos> procesosidTipoNavigation { get; set; } = new List<procesos>();
|
|
|
|
public virtual ICollection<usuarios> usuarios { get; set; } = new List<usuarios>();
|
|
}
|