49 lines
1.3 KiB
C#
49 lines
1.3 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("Corporativo.Condiciones")]
|
||
|
|
public partial class Condiciones
|
||
|
|
{
|
||
|
|
[Key]
|
||
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
|
public int IdCondicion { get; set; }
|
||
|
|
|
||
|
|
public int? IdOferta { get; set; }
|
||
|
|
|
||
|
|
public decimal? SubLimiteActual { get; set; }
|
||
|
|
|
||
|
|
public decimal? SubLimitePropuesto { get; set; }
|
||
|
|
|
||
|
|
public int? PlazoMaximoActual { get; set; }
|
||
|
|
|
||
|
|
public int? PlazoMaximoPropuesto { get; set; }
|
||
|
|
|
||
|
|
[StringLength(50)]
|
||
|
|
public string FormaPagoActual { get; set; }
|
||
|
|
|
||
|
|
[StringLength(50)]
|
||
|
|
public string FormaPagoPropuesta { get; set; }
|
||
|
|
|
||
|
|
public decimal? ComisionActual { get; set; }
|
||
|
|
|
||
|
|
public decimal? ComisionPropuesta { get; set; }
|
||
|
|
|
||
|
|
[StringLength(50)]
|
||
|
|
public string GarantiaActual { get; set; }
|
||
|
|
|
||
|
|
[StringLength(50)]
|
||
|
|
public string GarantiaPropuesta { get; set; }
|
||
|
|
|
||
|
|
[StringLength(200)]
|
||
|
|
public string DetalleGarantiaActual { get; set; }
|
||
|
|
|
||
|
|
[StringLength(200)]
|
||
|
|
public string DetalleGarantiaPropuesta { get; set; }
|
||
|
|
}
|
||
|
|
}
|