69 lines
1.8 KiB
C#
69 lines
1.8 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.SituacionHistorica")]
|
|
public partial class SituacionHistorica
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSituacionHistorica { 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(10)]
|
|
public string FecVencimiento { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string EstadoOperacion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string MotivoLiquidacion { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string AtrasoMaximo { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string AtrasoMedio { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string CategoriaOperacion { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string PeriodoReportado { get; set; }
|
|
|
|
public int? MesesReportados { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string EntidadAcreedora { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Ponderador { get; set; }
|
|
|
|
public virtual Cliente Cliente { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|