49 lines
1.2 KiB
C#
49 lines
1.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.PosicionActivos")]
|
|
public partial class PosicionActivos
|
|
{
|
|
[Key]
|
|
public int IdPosicionActivos { get; set; }
|
|
|
|
public int IdSolicitud { get; set; }
|
|
|
|
public int IdCliente { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string TipoOperacion { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string NumOperacion { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string FeInicio { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string FeVencimiento { get; set; }
|
|
|
|
public decimal? MontoOriginal { get; set; }
|
|
|
|
public decimal? CuotaActual { get; set; }
|
|
|
|
public decimal? SaldoActual { get; set; }
|
|
|
|
public decimal? DiasMora { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string Estado { get; set; }
|
|
|
|
[StringLength(7)]
|
|
public string Moneda { get; set; }
|
|
|
|
public virtual Cliente Cliente { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|