109 lines
6.6 KiB
C#
109 lines
6.6 KiB
C#
namespace ULA.Cathay.CreditoModel.Credito
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Catalogos.Etapas")]
|
|
public partial class Etapas
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public Etapas()
|
|
{
|
|
BitacoraControlAprobacion = new HashSet<BitacoraControlAprobacion>();
|
|
DecisionPorEtapa = new HashSet<DecisionPorEtapa>();
|
|
ConfiguracionNotificacion = new HashSet<ConfiguracionNotificacion>();
|
|
AdjuntoEmailSolicitud = new HashSet<AdjuntoEmailSolicitud>();
|
|
BitacoraControl = new HashSet<BitacoraControl>();
|
|
BitacoraEncValidarExcepciones = new HashSet<BitacoraEncValidarExcepciones>();
|
|
BitacoraHojaPendientes = new HashSet<BitacoraHojaPendientes>();
|
|
BitacoraValidaCumplimiento = new HashSet<BitacoraValidaCumplimiento>();
|
|
BitacoraCorreosEtapas = new HashSet<BitacoraCorreosEtapas>();
|
|
CaratulaCreditoCondicionesEspecialesBitacora = new HashSet<CaratulaCreditoCondicionesEspecialesBitacora>();
|
|
CaratulaCreditoExcepcionesPoliticaBitacora = new HashSet<CaratulaCreditoExcepcionesPoliticaBitacora>();
|
|
ClasificacionDocumentosAdjuntos = new HashSet<ClasificacionDocumentosAdjuntos>();
|
|
FormalizacionConfiguracionDocumentosLegales = new HashSet<FormalizacionConfiguracionDocumentosLegales>();
|
|
ConfiguracionRenovacionLineas = new HashSet<ConfiguracionRenovacionLineas>();
|
|
CorreosAutomaticosPendientes = new HashSet<CorreosAutomaticosPendientes>();
|
|
DocumentosEtapa = new HashSet<DocumentosEtapa>();
|
|
EmailSolicitud = new HashSet<EmailSolicitud>();
|
|
HistorialDecision = new HashSet<HistorialDecision>();
|
|
PlantillaCorreo = new HashSet<PlantillaCorreo>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdEtapa { get; set; }
|
|
|
|
public int IdProceso { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string DescripcionEtapa { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string UserId { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<BitacoraControlAprobacion> BitacoraControlAprobacion { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DecisionPorEtapa> DecisionPorEtapa { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<ConfiguracionNotificacion> ConfiguracionNotificacion { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<AdjuntoEmailSolicitud> AdjuntoEmailSolicitud { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<BitacoraControl> BitacoraControl { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<BitacoraEncValidarExcepciones> BitacoraEncValidarExcepciones { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<BitacoraHojaPendientes> BitacoraHojaPendientes { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<BitacoraValidaCumplimiento> BitacoraValidaCumplimiento { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<BitacoraCorreosEtapas> BitacoraCorreosEtapas { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<CaratulaCreditoCondicionesEspecialesBitacora> CaratulaCreditoCondicionesEspecialesBitacora { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<CaratulaCreditoExcepcionesPoliticaBitacora> CaratulaCreditoExcepcionesPoliticaBitacora { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<ClasificacionDocumentosAdjuntos> ClasificacionDocumentosAdjuntos { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<FormalizacionConfiguracionDocumentosLegales> FormalizacionConfiguracionDocumentosLegales { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<ConfiguracionRenovacionLineas> ConfiguracionRenovacionLineas { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<CorreosAutomaticosPendientes> CorreosAutomaticosPendientes { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DocumentosEtapa> DocumentosEtapa { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<EmailSolicitud> EmailSolicitud { get; set; }
|
|
|
|
public virtual Procesos Procesos { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<HistorialDecision> HistorialDecision { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<PlantillaCorreo> PlantillaCorreo { get; set; }
|
|
}
|
|
}
|