TFS_ANTIGUO/SInCathay/ULA.Cathay.CreditoModel/Credito/Solicitud.cs

161 lines
8.2 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("Global.Solicitud")]
public partial class Solicitud
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Solicitud()
{
BitacoraControlAprobacion = new HashSet<BitacoraControlAprobacion>();
Exposicion = new HashSet<Exposicion>();
BitacoraValidaCumplimiento = new HashSet<BitacoraValidaCumplimiento>();
VerificacionCondiciones = new HashSet<VerificacionCondiciones>();
BitacoraControl = new HashSet<BitacoraControl>();
CondicionesVerificacionFormalizacion = new HashSet<CondicionesVerificacionFormalizacion>();
DatosGeneralesFormalizacion = new HashSet<DatosGeneralesFormalizacion>();
BitacoraComentariosInternos = new HashSet<BitacoraComentariosInternos>();
BitacoraCorreosEtapas = new HashSet<BitacoraCorreosEtapas>();
BitacoraDocumentosFormalizacion = new HashSet<BitacoraDocumentosFormalizacion>();
BitacoraEncValidarExcepciones = new HashSet<BitacoraEncValidarExcepciones>();
ControlVisitas = new HashSet<ControlVisitas>();
CorreosAutomaticosPendientes = new HashSet<CorreosAutomaticosPendientes>();
EmailSolicitud = new HashSet<EmailSolicitud>();
Funcionario = new HashSet<Funcionario>();
GestionesVarias = new HashSet<GestionesVarias>();
HistorialDecision = new HashSet<HistorialDecision>();
HojaSeleccion = new HashSet<HojaSeleccion>();
ParticipantesLegalesAdicionales = new HashSet<ParticipantesLegalesAdicionales>();
Solicitante = new HashSet<Solicitante>();
DatosGeneralesSeguimiento = new HashSet<DatosGeneralesSeguimiento>();
}
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdSolicitud { get; set; }
public int? Incidente { get; set; }
[StringLength(48)]
public string Proceso { get; set; }
public bool? ConCodeudor { get; set; }
public bool? EstadoSolicitud { get; set; }
[StringLength(100)]
public string UsuarioCreador { get; set; }
public DateTime? FechaCreacion { get; set; }
[StringLength(100)]
public string UsuarioModificado { get; set; }
public DateTime? FechaModificacion { get; set; }
[StringLength(150)]
public string Process { get; set; }
[StringLength(150)]
public string Step { get; set; }
public int? Incident { get; set; }
[StringLength(13)]
public string IdSolicitudSAP { get; set; }
[Required]
[StringLength(1)]
public string IdEstadoBandeja { get; set; }
public int? IdSolicitudProceso { get; set; }
public int? IncidentStatus { get; set; }
public bool? GuardarEpower { get; set; }
public bool? AgregoParticipantesAdicionales { get; set; }
public virtual DatosGeneralesAnalisis DatosGeneralesAnalisis { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<BitacoraControlAprobacion> BitacoraControlAprobacion { get; set; }
public virtual EstadoBandeja EstadoBandeja { get; set; }
public virtual CaratulaCredito CaratulaCredito { get; set; }
public virtual DetalleRequisitos DetalleRequisitos { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Exposicion> Exposicion { get; set; }
public virtual Oferta Oferta { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<BitacoraValidaCumplimiento> BitacoraValidaCumplimiento { get; set; }
public virtual DesembolsoDatosGenerales DesembolsoDatosGenerales { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<VerificacionCondiciones> VerificacionCondiciones { 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<CondicionesVerificacionFormalizacion> CondicionesVerificacionFormalizacion { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<DatosGeneralesFormalizacion> DatosGeneralesFormalizacion { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<BitacoraComentariosInternos> BitacoraComentariosInternos { 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<BitacoraDocumentosFormalizacion> BitacoraDocumentosFormalizacion { 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<ControlVisitas> ControlVisitas { 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<EmailSolicitud> EmailSolicitud { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Funcionario> Funcionario { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<GestionesVarias> GestionesVarias { get; set; }
public virtual GestionRenovacionLineas GestionRenovacionLineas { 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<HojaSeleccion> HojaSeleccion { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<ParticipantesLegalesAdicionales> ParticipantesLegalesAdicionales { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Solicitante> Solicitante { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<DatosGeneralesSeguimiento> DatosGeneralesSeguimiento { get; set; }
}
}