62 lines
1.9 KiB
C#
62 lines
1.9 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("Analisis.DatosGeneralesAnalisis")]
|
|
public partial class DatosGeneralesAnalisis
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
public bool? PermitirEditarCaratula_PreAnalisis { get; set; }
|
|
|
|
public long? TiempoTotal_PreAnalisis { get; set; }
|
|
|
|
public DateTime? Fecha_InicioAnalisis { get; set; }
|
|
|
|
public int? IdDecision_InformeAnalisis { get; set; }
|
|
|
|
public DateTime? Fecha_VisitaSeguimiento { get; set; }
|
|
|
|
public long? IdCorreo_RecordatorioSeguimiento { get; set; }
|
|
|
|
public string Comentarios_Seguimiento { get; set; }
|
|
|
|
public bool? SolicitarDocumentos_Seguimiento { get; set; }
|
|
|
|
public int? IdTipoSeguimiento { get; set; }
|
|
|
|
public bool? NotificacionSeguimientoEnviada { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
public bool? NotificacionTresDias { get; set; }
|
|
|
|
public bool? SolicitarDocumentosAdicionales { get; set; }
|
|
|
|
public bool? DocumentosAdicionalesEntregados { get; set; }
|
|
|
|
public bool? NotificacionCincoDias { get; set; }
|
|
|
|
public string ComentariosDocumentosAdicionales { get; set; }
|
|
|
|
public DateTime? Fecha_InicioAnalisisIteraccion { get; set; }
|
|
|
|
public bool? Iniciado_PreAnalisis { get; set; }
|
|
|
|
public bool? Completado_PreAnalisis { get; set; }
|
|
|
|
public DateTime? FechaCompletado_PreAnalisis { get; set; }
|
|
|
|
public virtual Decision Decision { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
|
|
public virtual TipoSeguimiento TipoSeguimiento { get; set; }
|
|
}
|
|
}
|