61 lines
1.8 KiB
C#
61 lines
1.8 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("Formalizacion.FormalizacionDocumentosLegales")]
|
|
public partial class FormalizacionDocumentosLegales
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int Incident { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdProceso { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdTipoDocumento { get; set; }
|
|
|
|
public bool? RequiereRevision { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
public long? CodDocumentoAdjunto { get; set; }
|
|
|
|
public string ComentariosEvaluacion { get; set; }
|
|
|
|
public bool RegistradoEpower { get; set; }
|
|
|
|
public DateTime? FechaRegistraEpower { get; set; }
|
|
|
|
public bool? ClienteEntregoInformacion { get; set; }
|
|
|
|
public DateTime? FechaClienteEntregoInformacion { get; set; }
|
|
|
|
[Column(TypeName = "ntext")]
|
|
public string RutaEPower { get; set; }
|
|
|
|
public bool? DocumentoError { get; set; }
|
|
|
|
public bool? DocEviadoAlCliente { get; set; }
|
|
|
|
public virtual TipoDocumento TipoDocumento { get; set; }
|
|
|
|
public virtual DatosGeneralesFormalizacion DatosGeneralesFormalizacion { get; set; }
|
|
|
|
public virtual ClasificacionDocumentosAdjuntos ClasificacionDocumentosAdjuntos { get; set; }
|
|
}
|
|
}
|