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

72 lines
2.1 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("Corporativo.DetalleRequisitos")]
public partial class DetalleRequisitos
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdSolicitud { get; set; }
public int? IdEjecutivo { get; set; }
public DateTime? Fecha { get; set; }
public bool? SolicitarRequisitos { get; set; }
public bool? ClienteAcepta { get; set; }
public bool? EnviarCorreo { get; set; }
public bool? ContinuarSinRespuesta { get; set; }
public bool? TipoDatoVerbal { get; set; }
[Column(TypeName = "ntext")]
public string MotivosCliente { get; set; }
public long? IdDocumentoOfertaLeasing { get; set; }
[Column(TypeName = "ntext")]
public string RutaFisicaOfertaLeasing { get; set; }
public bool? GestionRenovacion { get; set; }
public bool? DocumentacionEntregada { get; set; }
public bool? VBGerenciaAnalisis { get; set; }
public bool? VBOficialCumplimiento { get; set; }
public int? DecisionGerenciaAnalisis { get; set; }
public int? DecisionOficialCumplimiento { get; set; }
public int? DecisionGerenciaNegocio { get; set; }
public string JustificacionRechazoAnalisis { get; set; }
public string JustificacionRechazoCumplimiento { get; set; }
public string JustificacionRechazoNegocio { get; set; }
public DateTime? FecDecisionGerenciaAnalisis { get; set; }
public DateTime? FecDecisionOficialCumplimiento { get; set; }
public bool? ActualizarSeleccion { get; set; }
public bool? ReqDevolucionNegocio { get; set; }
public bool? VerificarCondiciones { get; set; }
public virtual Ejecutivo Ejecutivo { get; set; }
public virtual Solicitud Solicitud { get; set; }
}
}