46 lines
1.2 KiB
C#
46 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.PosicionPasivos")]
|
|
public partial class PosicionPasivos
|
|
{
|
|
[Key]
|
|
public int IdPosicionPasivos { get; set; }
|
|
|
|
public int IdSolicitud { get; set; }
|
|
|
|
public int IdCliente { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string CoTipocuenta { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string TipoCuenta { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string NumCuenta { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string FeInicio { get; set; }
|
|
|
|
public decimal? SaldoPromedio { get; set; }
|
|
|
|
public decimal? CreditoPromedio { get; set; }
|
|
|
|
public decimal? DebitosPromedio { get; set; }
|
|
|
|
public decimal? Disponible { get; set; }
|
|
|
|
[StringLength(7)]
|
|
public string Moneda { get; set; }
|
|
|
|
public virtual Cliente Cliente { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|