55 lines
1.4 KiB
C#
55 lines
1.4 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.PosicionTarjetas")]
|
|
public partial class PosicionTarjetas
|
|
{
|
|
[Key]
|
|
public int IdPosicionTarjetas { get; set; }
|
|
|
|
public int IdSolicitud { get; set; }
|
|
|
|
public int IdCliente { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string TitularTarjeta { get; set; }
|
|
|
|
[StringLength(7)]
|
|
public string Moneda { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string LimiteCredito { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Saldo { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PagoMinimo { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string ClasificacionPago { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string Estado { get; set; }
|
|
|
|
public int? DiasAtraso { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string FeApertura { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string FeUltimoPago { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string MontoUltimoPago { get; set; }
|
|
|
|
public virtual Cliente Cliente { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|