92 lines
2.3 KiB
C#
92 lines
2.3 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.SituacionFinal")]
|
|
public partial class SituacionFinal
|
|
{
|
|
[Key]
|
|
public int IdSituacionFinal { get; set; }
|
|
|
|
public int? LlaveTabla { 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 FeVencimiento { 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; }
|
|
|
|
public double? Saldo { get; set; }
|
|
|
|
public double? CuotasEquivalente { get; set; }
|
|
|
|
public double? MontoOriginal { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string FeInicio { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string MotivoLiquidacion { get; set; }
|
|
|
|
public double? AtrasoMaximo { get; set; }
|
|
|
|
public double? AtrasoMedio { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string CategoriaOperacion { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string PeriodoReportado { get; set; }
|
|
|
|
public int? MesesReportados { get; set; }
|
|
|
|
public double? Ponderador { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string StatusTabla { get; set; }
|
|
|
|
public DateTime? FechaRegistro { get; set; }
|
|
|
|
public virtual Cliente Cliente { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|