103 lines
2.7 KiB
C#
103 lines
2.7 KiB
C#
namespace ULA.Cathay.CreditoModel.Credito
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Global.GrupoInteresEconomicoDetalle")]
|
|
public partial class GrupoInteresEconomicoDetalle
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(60)]
|
|
public string Identificacion { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(20)]
|
|
public string OperacionLinea { get; set; }
|
|
|
|
public bool? EsSap { get; set; }
|
|
|
|
public DateTime? FechaApertura { get; set; }
|
|
|
|
public DateTime? FechaVencimiento { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal? MontoSolicitado { get; set; }
|
|
|
|
public decimal? TasaInteres { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal? SaldoPendiente { get; set; }
|
|
|
|
[StringLength(15)]
|
|
public string CodEstado { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string DescEstado { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string TipoOperacion { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string DescTipoOperacion { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string Moneda { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string Plazo { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string TipoNaturalezaGasto { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string DescNaturalezaGasto { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string TipoDestinoUtilizacion { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string DescDestinoUtilizacion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string TipoGarantia { get; set; }
|
|
|
|
public string DescTipoGarantia { get; set; }
|
|
|
|
[Column(TypeName = "text")]
|
|
public string Comisiones { get; set; }
|
|
|
|
[Column(TypeName = "text")]
|
|
public string FormasDePago { get; set; }
|
|
|
|
public int? CodigoIncisoSUGEF { get; set; }
|
|
|
|
public decimal? ExposicionPropuesta { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioCreador { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioModificado { get; set; }
|
|
|
|
public DateTime? FechaModificacion { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Process { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Step { get; set; }
|
|
|
|
public int? Incident { get; set; }
|
|
|
|
public virtual IncisoSugef IncisoSugef { get; set; }
|
|
|
|
public virtual GrupoInteresEconomico GrupoInteresEconomico { get; set; }
|
|
}
|
|
}
|