88 lines
2.2 KiB
C#
88 lines
2.2 KiB
C#
namespace ULA.Davivienda.PrendarioModel.Prendario
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Prendario.SituacionActual")]
|
|
public partial class SituacionActual
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSituacionActual { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public int? IdCliente { get; set; }
|
|
|
|
public int? Incidente { get; set; }
|
|
|
|
[StringLength(48)]
|
|
public string Proceso { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string Identificacion { get; set; }
|
|
|
|
public bool? EsDeudor { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string Estado { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string IdOperacion { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Moneda { get; set; }
|
|
|
|
[StringLength(15)]
|
|
public string FecVencimiento { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string TipoOperacion { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Condicion { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string EstadoOperacion { get; set; }
|
|
|
|
public int? DiasAtraso { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string EntidadAcreedora { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string Saldo { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string CuotasEquivalente { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string MontoOriginal { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string FecInicio { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string MontoNoDesembolsado { get; set; }
|
|
|
|
public int? Cancela { get; set; }
|
|
|
|
public decimal? CuotaPrincipal { get; set; }
|
|
|
|
public decimal? CuotaIntereses { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string TipoTasa { get; set; }
|
|
|
|
public decimal? TasaNominal { get; set; }
|
|
|
|
public decimal? DTI_MiniEndeudamiento { get; set; }
|
|
|
|
public virtual Cliente Cliente { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|